private void HandleMouseButtonUp(object sender, MouseButtonEventArgs e) { if (Lag <= DateTime.Now) { Lag = DateTime.Now.AddMilliseconds(Conf.lagTypingUpdate); Updating = true; TextAddins.UpdateDocument(MainText); Updating = false; } }
private void HandleKeyUp(object sender, KeyEventArgs e) { if (e.Key == Key.Escape) { this.Close(); } if (Lag <= DateTime.Now) { Lag = DateTime.Now.AddMilliseconds(Conf.lagTypingUpdate); Updating = true; TextAddins.UpdateDocument(MainText); Updating = false; } }