Ejemplo n.º 1
0
 public static Key AXKeyToSilkKey(AXKey key) => (Key)key;
Ejemplo n.º 2
0
 public KeyTypedEvent(int keyCode, AXKey key) : base(keyCode, key) => EventType = GetStaticType <KeyTypedEvent>();
Ejemplo n.º 3
0
 protected KeyEvent(int keyCode, AXKey key) => (KeyCode, Key) = (keyCode, key);
Ejemplo n.º 4
0
 public KeyPressedEvent(int keyCode, AXKey key, int repeatCount) : base(keyCode, key)
 {
     RepeatCount = repeatCount;
     EventType   = GetStaticType <KeyPressedEvent>();
 }