7 references to KeyGesture
PresentationCore (1)
Core\CSharp\System\Windows\Input\Command\KeyGestureConverter.cs (1)
134
return new
KeyGesture
((Key)resultkey, modifiers, displayString);
System.Activities.Presentation (6)
System.Activities.Presentation\System\Activities\Presentation\DefaultCommandExtensionCallback.cs (6)
38
new
KeyGesture
(Key.OemPlus, ModifierKeys.Control, "Ctrl +"),
42
new
KeyGesture
(Key.OemMinus, ModifierKeys.Control, "Ctrl -"),
55
new List<KeyGesture> { new
KeyGesture
(Key.F6, ModifierKeys.Control | ModifierKeys.Alt, "Ctrl + Alt + F6") });
57
new List<KeyGesture> { new
KeyGesture
(Key.Right, ModifierKeys.Alt, "Alt + Right Arrow") });
59
new List<KeyGesture> { new
KeyGesture
(Key.J, ModifierKeys.Control, "Ctrl + J") });
152
base
(key, ModifierKeys.Control, string.Format(CultureInfo.InvariantCulture, "Ctrl+{0}, {1}", key, chordKey))