Пример #1
0
 private void TextEditorCaret_PositionChanged(object sender, EventArgs e)
 {
     try {
         OnEditorCaretChanged?.Invoke(sender as Caret);
     } catch (Exception ex) {
         Debug.WriteLine(ex.Message);
     }
 }
Пример #2
0
 public new void Focus()
 {
     OnEditorCaretChanged?.Invoke(TE.TextArea.Caret);
     OnErrorListUpdated?.Invoke(Errors);
 }