14 instantiations of InputGestureCollection
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 (6)
System\Windows\Input\Command\ApplicationCommands.cs (1)
307
InputGestureCollection gestures = new
InputGestureCollection
();
System\Windows\Input\Command\ComponentCommands.cs (1)
340
InputGestureCollection gestures = new
InputGestureCollection
();
System\Windows\Input\Command\MediaCommands.cs (1)
297
InputGestureCollection gestures = new
InputGestureCollection
();
System\Windows\Input\Command\NavigationCommands.cs (1)
232
InputGestureCollection gestures = new
InputGestureCollection
();
System\Windows\Input\Command\RoutedCommand.cs (2)
231
_inputGestureCollection = new
InputGestureCollection
();
272
return new
InputGestureCollection
();
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2081
InputGestureCollection input = new
InputGestureCollection
();
19 references to InputGestureCollection
PresentationCore (16)
System\Windows\Input\Command\ApplicationCommands.cs (2)
305
internal static
InputGestureCollection
LoadDefaultGestureFromResource(byte commandId)
307
InputGestureCollection
gestures = new InputGestureCollection();
System\Windows\Input\Command\CommandBindingCollection.cs (1)
368
InputGestureCollection
inputGestures = routedCommand.InputGesturesInternal;
System\Windows\Input\Command\ComponentCommands.cs (2)
338
internal static
InputGestureCollection
LoadDefaultGestureFromResource(byte commandId)
340
InputGestureCollection
gestures = new InputGestureCollection();
System\Windows\Input\Command\KeyGesture.cs (1)
247
internal static void AddGesturesFromResourceStrings(string keyGestures, string displayStrings,
InputGestureCollection
gestures)
System\Windows\Input\Command\MediaCommands.cs (2)
295
internal static
InputGestureCollection
LoadDefaultGestureFromResource(byte commandId)
297
InputGestureCollection
gestures = new InputGestureCollection();
System\Windows\Input\Command\NavigationCommands.cs (2)
230
internal static
InputGestureCollection
LoadDefaultGestureFromResource(byte commandId)
232
InputGestureCollection
gestures = new InputGestureCollection();
System\Windows\Input\Command\RoutedCommand.cs (5)
56
public RoutedCommand(string name, Type ownerType,
InputGestureCollection
inputGestures)
225
public
InputGestureCollection
InputGestures
237
internal
InputGestureCollection
InputGesturesInternal
254
private
InputGestureCollection
GetInputGestures()
475
private
InputGestureCollection
_inputGestureCollection;
System\Windows\Input\Command\RoutedUICommand.cs (1)
50
public RoutedUICommand(string text, string name, Type ownerType,
InputGestureCollection
inputGestures)
PresentationFramework (1)
System\Windows\Controls\MenuItem.cs (1)
1141
InputGestureCollection
col = routedCommand.InputGestures;
PresentationUI (2)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (2)
2081
InputGestureCollection
input = new InputGestureCollection();
2110
private static RoutedUICommand CreateAndBindCommand(string name, string header,
InputGestureCollection
gestures,