3 types derived from InputGesture
PresentationCore (2)
System\Windows\Input\Command\KeyGesture.cs (1)
33public class KeyGesture : InputGesture
System\Windows\Input\Command\MouseGesture.cs (1)
30public class MouseGesture : InputGesture
PresentationFramework (1)
System\Windows\Controls\Slider.cs (1)
169private class SliderGesture : InputGesture
46 references to InputGesture
PresentationCore (30)
System\Windows\Input\Command\InputBinding.cs (3)
40public InputBinding(ICommand command, InputGesture gesture) 133public virtual InputGesture Gesture 259private InputGesture _gesture = null ;
System\Windows\Input\Command\InputGestureCollection.cs (25)
89return this.Contains(key as InputGesture) ; 99InputGesture inputGesture = value as InputGesture; 113this.Insert(index, value as InputGesture); 125return this.Add(inputGesture as InputGesture); 137this.Remove(inputGesture as InputGesture); 151InputGesture inputGesture = value as InputGesture; 170List<InputGesture> list = new List<InputGesture>(0); 177public InputGesture this[int index] 227public int IndexOf(InputGesture value) 260public int Add(InputGesture inputGesture) 292_innerGestureList = new System.Collections.Generic.List<InputGesture>(collection.Count); 297InputGesture inputGesture = collectionEnum.Current as InputGesture; 315public void Insert(int index, InputGesture inputGesture) 342public void Remove(InputGesture inputGesture) 353_innerGestureList.Remove(inputGesture as InputGesture); 390public bool Contains(InputGesture key) 404public void CopyTo(InputGesture[] inputGestures, int index) 421_innerGestureList = new List<InputGesture>(1); 438internal InputGesture FindMatch(object targetElement, InputEventArgs inputEventArgs) 442InputGesture inputGesture = this[i]; 460private System.Collections.Generic.List<InputGesture> _innerGestureList;
System\Windows\Input\Command\KeyBinding.cs (1)
81public override InputGesture Gesture
System\Windows\Input\Command\MouseBinding.cs (1)
89public override InputGesture Gesture
PresentationFramework (15)
MS\Internal\Commands\CommandHelpers.cs (11)
27InputGesture inputGesture) 39InputGesture inputGesture, InputGesture inputGesture2) 51CanExecuteRoutedEventHandler canExecuteRoutedEventHandler, InputGesture inputGesture) 63CanExecuteRoutedEventHandler canExecuteRoutedEventHandler, InputGesture inputGesture, InputGesture inputGesture2) 70InputGesture inputGesture, InputGesture inputGesture2, InputGesture inputGesture3, InputGesture inputGesture4) 98CanExecuteRoutedEventHandler canExecuteRoutedEventHandler, params InputGesture[] inputGestures)
System\Windows\Controls\InkCanvas.cs (1)
2476InputGesture pasteInputGesture = KeyGesture.CreateFromResourceStrings(KeyShiftInsert, SR.KeyShiftInsertDisplayString);
System\windows\Documents\TextEditorCopyPaste.cs (1)
61InputGesture inputGesture = KeyGesture.CreateFromResourceStrings(KeyShiftInsert, SR.KeyShiftInsertDisplayString);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
7370typeof(System.Windows.Input.InputGesture), // type 7375bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Input.KeyBinding)target).Gesture = (System.Windows.Input.InputGesture)value; };
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2141foreach (InputGesture inputGesture in command.InputGestures)