System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\Controls\WorkaroundPopup.cs (1)
128if (e.Key == Key.Escape)
System.Activities.Presentation\System\Activities\Presentation\DefaultCommandExtensionCallback.cs (48)
25new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.P) });
27new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.E) });
29new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.X) });
31new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.C) });
33new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.Y) });
35new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.R) });
38new KeyGesture(Key.OemPlus, ModifierKeys.Control, "Ctrl +"),
39new KeyGesture(Key.Add, ModifierKeys.Control) });
42new KeyGesture(Key.OemMinus, ModifierKeys.Control, "Ctrl -"),
43new KeyGesture(Key.Subtract, ModifierKeys.Control) });
45new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.A) });
47new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.V) });
49new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.I) });
51new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.O) });
53new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.N) });
55new List<KeyGesture> { new KeyGesture(Key.F6, ModifierKeys.Control | ModifierKeys.Alt, "Ctrl + Alt + F6") });
57new List<KeyGesture> { new KeyGesture(Key.Right, ModifierKeys.Alt, "Alt + Right Arrow") });
59new List<KeyGesture> { new KeyGesture(Key.J, ModifierKeys.Control, "Ctrl + J") });
61new List<KeyGesture> { new ChordKeyGesture(Key.K, Key.P) });
63new List<KeyGesture> { new ChordKeyGesture(Key.K, Key.I) });
65new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.M) });
67new List<KeyGesture> { new ChordKeyGesture(Key.E, Key.S) });
69new List<KeyGesture> { new KeyGesture(Key.X, ModifierKeys.Control) });
71new List<KeyGesture> { new KeyGesture(Key.C, ModifierKeys.Control) });
73new List<KeyGesture> { new KeyGesture(Key.V, ModifierKeys.Control) });
75new List<KeyGesture> { new KeyGesture(Key.A, ModifierKeys.Control) });
77new List<KeyGesture> { new KeyGesture(Key.Z, ModifierKeys.Control) });
79new List<KeyGesture> { new KeyGesture(Key.Y, ModifierKeys.Control) });
81new List<KeyGesture> { new KeyGesture(Key.Decimal, ModifierKeys.Alt) });
83new List<KeyGesture> { new KeyGesture(Key.OemComma, ModifierKeys.Alt) });
123Key chordKey;
151public ChordKeyGesture(Key key, Key chordKey) :