3 types derived from InputGesture
PresentationCore (2)
System\Windows\Input\Command\KeyGesture.cs (1)
29
public class KeyGesture :
InputGesture
System\Windows\Input\Command\MouseGesture.cs (1)
26
public class MouseGesture :
InputGesture
PresentationFramework (1)
System\Windows\Controls\Slider.cs (1)
157
private class SliderGesture :
InputGesture
53 references to InputGesture
Microsoft.VisualStudio.LanguageServices (7)
GenerateType\GenerateTypeDialog.xaml.cs (5)
51
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.A, ModifierKeys.Alt) })),
58
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.K, ModifierKeys.Alt) })),
65
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.P, ModifierKeys.Alt) })),
72
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.C, ModifierKeys.Alt) })),
79
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)
35
public InputBinding(ICommand command,
InputGesture
gesture)
128
public virtual
InputGesture
Gesture
254
private
InputGesture
_gesture = null ;
System\Windows\Input\Command\InputGestureCollection.cs (25)
77
return this.Contains(key as
InputGesture
) ;
87
InputGesture
inputGesture = value as
InputGesture
;
101
this.Insert(index, value as
InputGesture
);
113
return this.Add(inputGesture as
InputGesture
);
125
this.Remove(inputGesture as
InputGesture
);
139
InputGesture
inputGesture = value as
InputGesture
;
158
List<
InputGesture
> list = new List<
InputGesture
>(0);
165
public
InputGesture
this[int index]
215
public int IndexOf(
InputGesture
value)
247
public int Add(
InputGesture
inputGesture)
279
_innerGestureList = new System.Collections.Generic.List<
InputGesture
>(collection.Count);
284
InputGesture
inputGesture = collectionEnum.Current as
InputGesture
;
302
public void Insert(int index,
InputGesture
inputGesture)
328
public void Remove(
InputGesture
inputGesture)
339
_innerGestureList.Remove(inputGesture as
InputGesture
);
376
public bool Contains(
InputGesture
key)
390
public void CopyTo(
InputGesture
[] inputGestures, int index)
406
_innerGestureList = new List<
InputGesture
>(1);
423
internal
InputGesture
FindMatch(object targetElement, InputEventArgs inputEventArgs)
427
InputGesture
inputGesture = this[i];
445
private System.Collections.Generic.List<
InputGesture
> _innerGestureList;
System\Windows\Input\Command\KeyBinding.cs (1)
72
public override
InputGesture
Gesture
System\Windows\Input\Command\MouseBinding.cs (1)
79
public override
InputGesture
Gesture
PresentationFramework (15)
MS\Internal\Commands\CommandHelpers.cs (11)
21
InputGesture
inputGesture)
33
InputGesture
inputGesture,
InputGesture
inputGesture2)
45
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler,
InputGesture
inputGesture)
57
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler,
InputGesture
inputGesture,
InputGesture
inputGesture2)
64
InputGesture
inputGesture,
InputGesture
inputGesture2,
InputGesture
inputGesture3,
InputGesture
inputGesture4)
92
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler, params ReadOnlySpan<
InputGesture
> inputGestures)
System\Windows\Controls\InkCanvas.cs (1)
2479
InputGesture
pasteInputGesture = KeyGesture.CreateFromResourceStrings(KeyShiftInsert, SR.KeyShiftInsertDisplayString);
System\windows\Documents\TextEditorCopyPaste.cs (1)
47
InputGesture
inputGesture = KeyGesture.CreateFromResourceStrings(KeyShiftInsert, SR.KeyShiftInsertDisplayString);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
7943
typeof(System.Windows.Input.
InputGesture
), // type
7949
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)
2131
foreach (
InputGesture
inputGesture in command.InputGestures)