Exemple #1
0
 private void Control_GotFocus(object sender, EventArgs e)
 {
     if (FocusScControl != null)
     {
         FocusScControl.ScGotFocus(e);
     }
 }
Exemple #2
0
 private void Control_CharEvent(char c)
 {
     if (FocusScControl != null)
     {
         FocusScControl.ScCharEvent(c);
     }
 }
Exemple #3
0
 private void Control_KeyDown(object sender, KeyEventArgs e)
 {
     if (FocusScControl != null)
     {
         FocusScControl.ScKeyDown(e);
     }
 }
Exemple #4
0
 private void Control_ImeStringEvent(string imeString)
 {
     if (FocusScControl != null)
     {
         FocusScControl.ScImeStringEvent(imeString);
     }
 }