3 types derived from InputGesture
PresentationCore (2)
Core\CSharp\System\Windows\Input\Command\KeyGesture.cs (1)
35
public class KeyGesture :
InputGesture
Core\CSharp\System\Windows\Input\Command\MouseGesture.cs (1)
33
public class MouseGesture :
InputGesture
PresentationFramework (1)
src\Framework\System\Windows\Controls\Slider.cs (1)
171
private class SliderGesture :
InputGesture
46 references to InputGesture
PresentationCore (31)
Core\CSharp\System\Windows\Input\Command\InputBinding.cs (4)
46
public InputBinding(ICommand command,
InputGesture
gesture)
162
public virtual
InputGesture
Gesture
204
void CheckSecureCommand(ICommand command,
InputGesture
gesture)
320
private
InputGesture
_gesture = null ;
Core\CSharp\System\Windows\Input\Command\InputGestureCollection.cs (25)
94
return this.Contains(key as
InputGesture
) ;
104
InputGesture
inputGesture = value as
InputGesture
;
118
this.Insert(index, value as
InputGesture
);
130
return this.Add(inputGesture as
InputGesture
);
142
this.Remove(inputGesture as
InputGesture
);
156
InputGesture
inputGesture = value as
InputGesture
;
175
List<
InputGesture
> list = new List<
InputGesture
>(0);
182
public
InputGesture
this[int index]
232
public int IndexOf(
InputGesture
value)
265
public int Add(
InputGesture
inputGesture)
301
_innerGestureList = new System.Collections.Generic.List<
InputGesture
>(collection.Count);
306
InputGesture
inputGesture = collectionEnum.Current as
InputGesture
;
324
public void Insert(int index,
InputGesture
inputGesture)
351
public void Remove(
InputGesture
inputGesture)
365
_innerGestureList.Remove(inputGesture as
InputGesture
);
402
public bool Contains(
InputGesture
key)
416
public void CopyTo(
InputGesture
[] inputGestures, int index)
433
_innerGestureList = new List<
InputGesture
>(1);
450
internal
InputGesture
FindMatch(object targetElement, InputEventArgs inputEventArgs)
454
InputGesture
inputGesture = this[i];
472
private System.Collections.Generic.List<
InputGesture
> _innerGestureList;
Core\CSharp\System\Windows\Input\Command\KeyBinding.cs (1)
88
public override
InputGesture
Gesture
Core\CSharp\System\Windows\Input\Command\MouseBinding.cs (1)
94
public override
InputGesture
Gesture
PresentationFramework (15)
src\Framework\MS\Internal\Commands\CommandHelpers.cs (11)
30
InputGesture
inputGesture)
42
InputGesture
inputGesture,
InputGesture
inputGesture2)
54
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler,
InputGesture
inputGesture)
66
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler,
InputGesture
inputGesture,
InputGesture
inputGesture2)
73
InputGesture
inputGesture,
InputGesture
inputGesture2,
InputGesture
inputGesture3,
InputGesture
inputGesture4)
101
CanExecuteRoutedEventHandler canExecuteRoutedEventHandler, params
InputGesture
[] inputGestures)
src\Framework\System\Windows\Controls\InkCanvas.cs (1)
2608
InputGesture
pasteInputGesture = KeyGesture.CreateFromResourceStrings(SR.Get(SRID.KeyShiftInsert), SR.Get(SRID.KeyShiftInsertDisplayString));
src\Framework\System\windows\Documents\TextEditorCopyPaste.cs (1)
70
InputGesture
inputGesture = KeyGesture.CreateFromResourceStrings(SR.Get(SRID.KeyShiftInsert), SR.Get(SRID.KeyShiftInsertDisplayString));
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
7328
typeof(System.Windows.Input.
InputGesture
), // type
7333
bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Input.KeyBinding)target).Gesture = (System.Windows.Input.
InputGesture
)value; };