2 overrides of Gesture
PresentationCore (2)
Core\CSharp\System\Windows\Input\Command\KeyBinding.cs (1)
88public override InputGesture Gesture
Core\CSharp\System\Windows\Input\Command\MouseBinding.cs (1)
94public override InputGesture Gesture
2 writes to Gesture
PresentationCore (2)
Core\CSharp\System\Windows\Input\Command\KeyBinding.cs (1)
99base.Gesture = value;
Core\CSharp\System\Windows\Input\Command\MouseBinding.cs (1)
106base.Gesture = mouseGesture;
9 references to Gesture
PresentationCore (9)
Core\CSharp\System\Windows\Input\Command\InputBinding.cs (5)
109inputBinding.CheckSecureCommand((ICommand)e.NewValue, inputBinding.Gesture); 239_gesture = ((InputBinding)sourceFreezable).Gesture; 248_gesture = ((InputBinding)sourceFreezable).Gesture; 257_gesture = ((InputBinding)sourceFreezable).Gesture; 266_gesture = ((InputBinding)sourceFreezable).Gesture;
Core\CSharp\System\Windows\Input\Command\InputBindingCollection.cs (2)
459if ((inputBinding.Command != null) && (inputBinding.Gesture != null) && 460inputBinding.Gesture.Matches(targetElement, inputEventArgs))
Core\CSharp\System\Windows\Input\Command\KeyBinding.cs (1)
92return base.Gesture as KeyGesture;
Core\CSharp\System\Windows\Input\Command\MouseBinding.cs (1)
98return base.Gesture as MouseGesture;