2 overrides of Gesture
PresentationCore (2)
System\Windows\Input\Command\KeyBinding.cs (1)
73public override InputGesture Gesture
System\Windows\Input\Command\MouseBinding.cs (1)
80public override InputGesture Gesture
2 writes to Gesture
PresentationCore (2)
System\Windows\Input\Command\KeyBinding.cs (1)
84base.Gesture = value;
System\Windows\Input\Command\MouseBinding.cs (1)
92base.Gesture = mouseGesture;
8 references to Gesture
PresentationCore (8)
System\Windows\Input\Command\InputBinding.cs (4)
174_gesture = ((InputBinding)sourceFreezable).Gesture; 183_gesture = ((InputBinding)sourceFreezable).Gesture; 192_gesture = ((InputBinding)sourceFreezable).Gesture; 201_gesture = ((InputBinding)sourceFreezable).Gesture;
System\Windows\Input\Command\InputBindingCollection.cs (2)
429if ((inputBinding.Command != null) && (inputBinding.Gesture != null) && 430inputBinding.Gesture.Matches(targetElement, inputEventArgs))
System\Windows\Input\Command\KeyBinding.cs (1)
77return base.Gesture as KeyGesture;
System\Windows\Input\Command\MouseBinding.cs (1)
84return base.Gesture as MouseGesture;