6 references to Key
PresentationCore (6)
System\Windows\Input\Command\KeyBinding.cs (1)
179Key = keyGesture.Key;
System\Windows\Input\Command\KeyGesture.cs (1)
183return ( ( (int)Key == (int)keyEventArgs.RealKey ) && ( this.Modifiers == Keyboard.Modifiers ) );
System\Windows\Input\Command\KeyGestureConverter.cs (3)
68&& IsDefinedKey(keyGesture.Key)); 153if (keyGesture.Key == Key.None) 157string strKey = (string)keyConverter.ConvertTo(context, culture, keyGesture.Key, destinationType) as string;
System\Windows\Input\Command\KeyGestureValueSerializer.cs (1)
55&& KeyGestureConverter.IsDefinedKey(keyGesture.Key);