Example #1
0
 protected void OnEndPressed(KeyPressedEventArgs e)
 {
     EndPressed?.Invoke(this, e);
 }
Example #2
0
 protected void OnCharacterKeyPressed(KeyPressedEventArgs e)
 {
     CharacterKeyPressed?.Invoke(this, e);
 }
Example #3
0
 protected void OnShiftTabPressed(KeyPressedEventArgs e)
 {
     ShiftTabPressed?.Invoke(this, e);
 }
Example #4
0
 protected void OnHomePressed(KeyPressedEventArgs e)
 {
     HomePressed?.Invoke(this, e);
 }
Example #5
0
 protected void OnDeletePressed(KeyPressedEventArgs e)
 {
     DeletePressed?.Invoke(this, e);
 }
Example #6
0
 protected void OnBackspacePressed(KeyPressedEventArgs e)
 {
     BackspacePressed?.Invoke(this, e);
 }
Example #7
0
 protected void OnRightArrowPressed(KeyPressedEventArgs e)
 {
     RightArrowPressed?.Invoke(this, e);
 }
Example #8
0
 protected void OnLeftArrowPressed(KeyPressedEventArgs e)
 {
     LeftArrowPressed?.Invoke(this, e);
 }
Example #9
0
 protected void OnDownArrowPressed(KeyPressedEventArgs e)
 {
     DownArrowPressed?.Invoke(this, e);
 }