Example #1
0
 /// <summary>
 /// Raises the KeyTyped event. This is done automatically by a correctly configured component,
 /// but this is exposed publicly to allow programmatic key typed events to occur.
 /// </summary>
 public void OnKeyTyped(object sender, CharacterEventArgs args)
 {
     if (KeyTyped != null)
     {
         KeyTyped(sender, args);
     }
 }
Example #2
0
 public void RecieveTextInput(char inputChar, CharacterEventArgs e)
 {
     if(Locked)
         return;
 }
Example #3
0
 /// <summary>
 /// Raises the KeyTyped event. This is done automatically by a correctly configured component,
 /// but this is exposed publicly to allow programmatic key typed events to occur.
 /// </summary>
 public void OnKeyTyped(object sender, CharacterEventArgs args)
 {
     if (KeyTyped != null) { KeyTyped(sender, args); }
 }