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