2 overrides of Gesture
PresentationCore (2)
System\Windows\Input\Command\KeyBinding.cs (1)
81public override InputGesture Gesture
System\Windows\Input\Command\MouseBinding.cs (1)
89public override InputGesture Gesture
2 writes to Gesture
PresentationCore (2)
System\Windows\Input\Command\KeyBinding.cs (1)
92base.Gesture = value;
System\Windows\Input\Command\MouseBinding.cs (1)
101base.Gesture = mouseGesture;
8 references to Gesture
PresentationCore (8)
System\Windows\Input\Command\InputBinding.cs (4)
178_gesture = ((InputBinding)sourceFreezable).Gesture; 187_gesture = ((InputBinding)sourceFreezable).Gesture; 196_gesture = ((InputBinding)sourceFreezable).Gesture; 205_gesture = ((InputBinding)sourceFreezable).Gesture;
System\Windows\Input\Command\InputBindingCollection.cs (2)
453if ((inputBinding.Command != null) && (inputBinding.Gesture != null) && 454inputBinding.Gesture.Matches(targetElement, inputEventArgs))
System\Windows\Input\Command\KeyBinding.cs (1)
85return base.Gesture as KeyGesture;
System\Windows\Input\Command\MouseBinding.cs (1)
93return base.Gesture as MouseGesture;