Beispiel #1
0
 private void OnGotFocus(object sender, EventArgs e)
 {
     if (UserGotFocus != null)
     {
         UserGotFocus.Invoke(sender, e);
     }
 }
Beispiel #2
0
 protected void ChangeFocus()
 {
     _focusElement.Focus();
     if (UserGotFocus != null)
     {
         UserGotFocus.Invoke(this, null);
     }
 }
Beispiel #3
0
 private void OnGotFocus(object sender, EventArgs e)
 {
     Logger.WriteMinorEvent("Focus {0}:{1}", _nameForLogging, _writingSystem.Id);
     _haveAlreadyLoggedTextChanged = false;
     if (UserGotFocus != null)
     {
         UserGotFocus.Invoke(sender, e);
     }
 }