3 types derived from InputGesture
PresentationCore (2)
System\Windows\Input\Command\KeyGesture.cs (1)
33
public class KeyGesture :
InputGesture
System\Windows\Input\Command\MouseGesture.cs (1)
30
public class MouseGesture :
InputGesture
PresentationFramework (1)
System\Windows\Controls\Slider.cs (1)
169
private class SliderGesture :
InputGesture
53 references to InputGesture
Microsoft.VisualStudio.LanguageServices (7)
GenerateType\GenerateTypeDialog.xaml.cs (5)
52
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.A, ModifierKeys.Alt) })),
59
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.K, ModifierKeys.Alt) })),
66
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.P, ModifierKeys.Alt) })),
73
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.C, ModifierKeys.Alt) })),
80
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.X, ModifierKeys.Alt) })),
PickMembers\PickMembersDialog.xaml.cs (2)
51
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.S, ModifierKeys.Alt) })),
58
new InputGestureCollection(new List<
InputGesture
> { new KeyGesture(Key.D, ModifierKeys.Alt) })),
PresentationCore (30)
System\Windows\Input\Command\InputBinding.cs (3)
40
public InputBinding(ICommand command,
InputGesture
gesture)
133
public virtual
InputGesture
Gesture
259
private
InputGesture
_gesture = null ;
System\Windows\Input\Command\InputGestureCollection.cs (25)
89
return this.Contains(key as
InputGesture
) ;
99
InputGesture
inputGesture = value as
InputGesture
;
113
this.Insert(index, value as
InputGesture
);
125
return this.Add(inputGesture as
InputGesture
);
137
this.Remove(inputGesture as
InputGesture
);
151
InputGesture
inputGesture = value as
InputGesture
;
170
List<
InputGesture
> list = new List<
InputGesture
>(0);
177
public
InputGesture
this[int index]
227
public int IndexOf(
InputGesture
value)
260
public int Add(
InputGesture
inputGesture)
292
_innerGestureList = new System.Collections.Generic.List<
InputGesture
>(collection.Count);
297
InputGesture
inputGesture = collectionEnum.Current as
InputGesture
;
315
public void Insert(int index,
InputGesture
inputGesture)
342
public void Remove(
InputGesture
inputGesture)
353
_innerGestureList.Remove(inputGesture as
InputGesture
);
390
public bool Contains(
InputGesture
key)
404
public void CopyTo(
InputGesture
[] inputGestures, int index)
421
_innerGestureList = new List<
InputGesture
>(1);
438
internal
InputGesture
FindMatch(object targetElement, InputEventArgs inputEventArgs)
442
InputGesture
inputGesture = this[i];
460
private System.Collections.Generic.List<
InputGesture
> _innerGestureList;
System\Windows\Input\Command\KeyBinding.cs (1)
81
public override
InputGesture
Gesture
System\Windows\Input\Command\MouseBinding.cs (1)
89
public override
InputGesture
Gesture
PresentationFramework (15)
MS\Internal\Commands\CommandHelpers.cs (11)
27
InputGesture
inputGesture)
39
InputGesture
inputGesture,
InputGesture
inputGesture2)
51
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler,
InputGesture
inputGesture)
63
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler,
InputGesture
inputGesture,
InputGesture
inputGesture2)
70
InputGesture
inputGesture,
InputGesture
inputGesture2,
InputGesture
inputGesture3,
InputGesture
inputGesture4)
98
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler, params
InputGesture
[] inputGestures)
System\Windows\Controls\InkCanvas.cs (1)
2476
InputGesture
pasteInputGesture = KeyGesture.CreateFromResourceStrings(KeyShiftInsert, SR.KeyShiftInsertDisplayString);
System\windows\Documents\TextEditorCopyPaste.cs (1)
61
InputGesture
inputGesture = KeyGesture.CreateFromResourceStrings(KeyShiftInsert, SR.KeyShiftInsertDisplayString);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
7370
typeof(System.Windows.Input.
InputGesture
), // type
7375
bamlMember.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)
2139
foreach (
InputGesture
inputGesture in command.InputGestures)