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