2 overrides of Gesture
PresentationCore (2)
System\Windows\Input\Command\KeyBinding.cs (1)
72public override InputGesture Gesture
System\Windows\Input\Command\MouseBinding.cs (1)
79public override InputGesture Gesture
2 writes to Gesture
PresentationCore (2)
System\Windows\Input\Command\KeyBinding.cs (1)
83base.Gesture = value;
System\Windows\Input\Command\MouseBinding.cs (1)
91base.Gesture = mouseGesture;
8 references to Gesture
PresentationCore (8)
System\Windows\Input\Command\InputBinding.cs (4)
173_gesture = ((InputBinding)sourceFreezable).Gesture; 182_gesture = ((InputBinding)sourceFreezable).Gesture; 191_gesture = ((InputBinding)sourceFreezable).Gesture; 200_gesture = ((InputBinding)sourceFreezable).Gesture;
System\Windows\Input\Command\InputBindingCollection.cs (2)
425if ((inputBinding.Command != null) && (inputBinding.Gesture != null) && 426inputBinding.Gesture.Matches(targetElement, inputEventArgs))
System\Windows\Input\Command\KeyBinding.cs (1)
76return base.Gesture as KeyGesture;
System\Windows\Input\Command\MouseBinding.cs (1)
83return base.Gesture as MouseGesture;