Ejemplo n.º 1
0
 /// <summary>
 ///
 /// </summary>
 public Boolean IsFunctionalKeyUp(FunctionalKey key)
 {
     return !PressedFunctionalKeys.Contains (key);
 }
Ejemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 public KeyState this[FunctionalKey key]
 {
     get {return PressedFunctionalKeys.Contains (key) ? KeyState.Down : KeyState.Up; }
 }