14 instantiations of InputGestureCollection
Microsoft.VisualStudio.LanguageServices (7)
GenerateType\GenerateTypeDialog.xaml.cs (5)
51new InputGestureCollection(new List<InputGesture> { new KeyGesture(Key.A, ModifierKeys.Alt) })), 58new InputGestureCollection(new List<InputGesture> { new KeyGesture(Key.K, ModifierKeys.Alt) })), 65new InputGestureCollection(new List<InputGesture> { new KeyGesture(Key.P, ModifierKeys.Alt) })), 72new InputGestureCollection(new List<InputGesture> { new KeyGesture(Key.C, ModifierKeys.Alt) })), 79new InputGestureCollection(new List<InputGesture> { new KeyGesture(Key.X, ModifierKeys.Alt) })),
PickMembers\PickMembersDialog.xaml.cs (2)
52new InputGestureCollection(new List<InputGesture> { new KeyGesture(Key.S, ModifierKeys.Alt) })), 59new InputGestureCollection(new List<InputGesture> { new KeyGesture(Key.D, ModifierKeys.Alt) })),
PresentationCore (6)
System\Windows\Input\Command\ApplicationCommands.cs (1)
293InputGestureCollection gestures = new InputGestureCollection();
System\Windows\Input\Command\ComponentCommands.cs (1)
325InputGestureCollection gestures = new InputGestureCollection();
System\Windows\Input\Command\MediaCommands.cs (1)
282InputGestureCollection gestures = new InputGestureCollection();
System\Windows\Input\Command\NavigationCommands.cs (1)
217InputGestureCollection gestures = new InputGestureCollection();
System\Windows\Input\Command\RoutedCommand.cs (2)
219_inputGestureCollection = new InputGestureCollection(); 260return new InputGestureCollection();
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2073InputGestureCollection input = new InputGestureCollection();
19 references to InputGestureCollection
PresentationCore (16)
System\Windows\Input\Command\ApplicationCommands.cs (2)
291internal static InputGestureCollection LoadDefaultGestureFromResource(byte commandId) 293InputGestureCollection gestures = new InputGestureCollection();
System\Windows\Input\Command\CommandBindingCollection.cs (1)
354InputGestureCollection inputGestures = routedCommand.InputGesturesInternal;
System\Windows\Input\Command\ComponentCommands.cs (2)
323internal static InputGestureCollection LoadDefaultGestureFromResource(byte commandId) 325InputGestureCollection gestures = new InputGestureCollection();
System\Windows\Input\Command\KeyGesture.cs (1)
243internal static void AddGesturesFromResourceStrings(string keyGestures, string displayStrings, InputGestureCollection gestures)
System\Windows\Input\Command\MediaCommands.cs (2)
280internal static InputGestureCollection LoadDefaultGestureFromResource(byte commandId) 282InputGestureCollection gestures = new InputGestureCollection();
System\Windows\Input\Command\NavigationCommands.cs (2)
215internal static InputGestureCollection LoadDefaultGestureFromResource(byte commandId) 217InputGestureCollection gestures = new InputGestureCollection();
System\Windows\Input\Command\RoutedCommand.cs (5)
44public RoutedCommand(string name, Type ownerType, InputGestureCollection inputGestures) 213public InputGestureCollection InputGestures 225internal InputGestureCollection InputGesturesInternal 242private InputGestureCollection GetInputGestures() 464private InputGestureCollection _inputGestureCollection;
System\Windows\Input\Command\RoutedUICommand.cs (1)
45public RoutedUICommand(string text, string name, Type ownerType, InputGestureCollection inputGestures)
PresentationFramework (1)
System\Windows\Controls\MenuItem.cs (1)
1127InputGestureCollection col = routedCommand.InputGestures;
PresentationUI (2)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (2)
2073InputGestureCollection input = new InputGestureCollection(); 2102private static RoutedUICommand CreateAndBindCommand(string name, string header, InputGestureCollection gestures,