6 references to Key
PresentationCore (6)
Core\CSharp\System\Windows\Input\Command\KeyBinding.cs (1)
186Key = keyGesture.Key;
Core\CSharp\System\Windows\Input\Command\KeyGesture.cs (1)
186return ( ( (int)Key == (int)keyEventArgs.RealKey ) && ( this.Modifiers == Keyboard.Modifiers ) );
Core\CSharp\System\Windows\Input\Command\KeyGestureConverter.cs (3)
74&& IsDefinedKey(keyGesture.Key)); 160if (keyGesture.Key == Key.None) 164string strKey = (string)keyConverter.ConvertTo(context, culture, keyGesture.Key, destinationType) as string;
Core\CSharp\System\Windows\Input\Command\KeyGestureValueSerializer.cs (1)
59&& KeyGestureConverter.IsDefinedKey(keyGesture.Key);