private void textControl1_TextFieldCreated(object sender, TextFieldEventArgs e) { int iStartPos = textControl1.Selection.Start; SetFields(); textControl1.Selection.Start = iStartPos; }
private void textControl1_TextFieldCreated(object sender, TextFieldEventArgs e) { if (e.TextField.Name.StartsWith("FN:") == true) { ReorderFootnotes(); CreateFootnotes(); } }
private void OnTextChangedAggregation(TextFieldEventArgs args) { var handler = OnTextChanged; if (handler != null) { handler(this, args); } }
private void textControl1_TextFieldEntered(object sender, TextFieldEventArgs e) { // set the current field based on the selected field currentApplicationField = listApplicationFields.IndexOf(e.TextField as ApplicationField); HighlightField(); EnableNavigateButtons(); }
void EventNexus_TextFieldDeactivated(TextFieldEventArgs ea) { ConvertSpacesToCamelCase(false); }
void EventNexus_TextFieldCommitted(TextFieldEventArgs ea) { ConvertSpacesToCamelCase(false); }
void EventNexus_TextFieldActivated(TextFieldEventArgs ea) { if (_IsEnabled) ConvertSpacesToCamelCase(true); }
private void textControl1_TextFieldClicked(object sender, TextFieldEventArgs e) { ShowEditor(e.TextField); }