8 references to Key
PresentationCore (6)
System\Windows\Input\Command\KeyBinding.cs (1)
171Key = keyGesture.Key;
System\Windows\Input\Command\KeyGesture.cs (1)
180return ( ( (int)Key == (int)keyEventArgs.RealKey ) && ( this.Modifiers == Keyboard.Modifiers ) );
System\Windows\Input\Command\KeyGestureConverter.cs (3)
62&& IsDefinedKey(keyGesture.Key)); 147if (keyGesture.Key == Key.None) 151string strKey = (string)keyConverter.ConvertTo(context, culture, keyGesture.Key, destinationType) as string;
System\Windows\Input\Command\KeyGestureValueSerializer.cs (1)
48&& KeyGestureConverter.IsDefinedKey(keyGesture.Key);
PresentationCore.Tests (2)
System\Windows\Input\Command\KeyGestureConverter.Tests.cs (2)
83Assert.Equal(expected.Key, converted.Key);