3 types derived from InputGesture
PresentationCore (2)
System\Windows\Input\Command\KeyGesture.cs (1)
30
public class KeyGesture :
InputGesture
System\Windows\Input\Command\MouseGesture.cs (1)
27
public class MouseGesture :
InputGesture
PresentationFramework (1)
System\Windows\Controls\Slider.cs (1)
158
private class SliderGesture :
InputGesture
53 references to InputGesture
Microsoft.VisualStudio.LanguageServices (7)
GenerateType\GenerateTypeDialog.xaml.cs (5)
53
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.A, ModifierKeys.Alt) })),
60
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.K, ModifierKeys.Alt) })),
67
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.P, ModifierKeys.Alt) })),
74
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.C, ModifierKeys.Alt) })),
81
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.X, ModifierKeys.Alt) })),
PickMembers\PickMembersDialog.xaml.cs (2)
52
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.S, ModifierKeys.Alt) })),
59
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.D, ModifierKeys.Alt) })),
PresentationCore (30)
System\Windows\Input\Command\InputBinding.cs (3)
36
public InputBinding(ICommand command,
InputGesture
gesture)
129
public virtual
InputGesture
Gesture
255
private
InputGesture
_gesture = null ;
System\Windows\Input\Command\InputGestureCollection.cs (25)
78
return this.Contains(key as
InputGesture
) ;
88
InputGesture
inputGesture = value as
InputGesture
;
102
this.Insert(index, value as
InputGesture
);
114
return this.Add(inputGesture as
InputGesture
);
126
this.Remove(inputGesture as
InputGesture
);
140
InputGesture
inputGesture = value as
InputGesture
;
159
List<
InputGesture
> list = new List<
InputGesture
>(0);
166
public
InputGesture
this[int index]
216
public int IndexOf(
InputGesture
value)
249
public int Add(
InputGesture
inputGesture)
281
_innerGestureList = new System.Collections.Generic.List<
InputGesture
>(collection.Count);
286
InputGesture
inputGesture = collectionEnum.Current as
InputGesture
;
304
public void Insert(int index,
InputGesture
inputGesture)
331
public void Remove(
InputGesture
inputGesture)
342
_innerGestureList.Remove(inputGesture as
InputGesture
);
379
public bool Contains(
InputGesture
key)
393
public void CopyTo(
InputGesture
[] inputGestures, int index)
410
_innerGestureList = new List<
InputGesture
>(1);
427
internal
InputGesture
FindMatch(object targetElement, InputEventArgs inputEventArgs)
431
InputGesture
inputGesture = this[i];
449
private System.Collections.Generic.List<
InputGesture
> _innerGestureList;
System\Windows\Input\Command\KeyBinding.cs (1)
73
public override
InputGesture
Gesture
System\Windows\Input\Command\MouseBinding.cs (1)
80
public override
InputGesture
Gesture
PresentationFramework (15)
MS\Internal\Commands\CommandHelpers.cs (11)
22
InputGesture
inputGesture)
34
InputGesture
inputGesture,
InputGesture
inputGesture2)
46
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler,
InputGesture
inputGesture)
58
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler,
InputGesture
inputGesture,
InputGesture
inputGesture2)
65
InputGesture
inputGesture,
InputGesture
inputGesture2,
InputGesture
inputGesture3,
InputGesture
inputGesture4)
93
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler, params ReadOnlySpan<
InputGesture
> inputGestures)
System\Windows\Controls\InkCanvas.cs (1)
2480
InputGesture
pasteInputGesture = KeyGesture.CreateFromResourceStrings(KeyShiftInsert, SR.KeyShiftInsertDisplayString);
System\windows\Documents\TextEditorCopyPaste.cs (1)
48
InputGesture
inputGesture = KeyGesture.CreateFromResourceStrings(KeyShiftInsert, SR.KeyShiftInsertDisplayString);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
7944
typeof(System.Windows.Input.
InputGesture
), // type
7950
SetDelegate = delegate (object target, object value) { ((System.Windows.Input.KeyBinding)target).Gesture = (System.Windows.Input.
InputGesture
)value; },
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2135
foreach (
InputGesture
inputGesture in command.InputGestures)