RoutedCommand.InputGestures Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the collection of InputGesture objects that are associated with this command.
public:
property System::Windows::Input::InputGestureCollection ^ InputGestures { System::Windows::Input::InputGestureCollection ^ get(); };
public System.Windows.Input.InputGestureCollection InputGestures { get; }
member this.InputGestures : System.Windows.Input.InputGestureCollection
Public ReadOnly Property InputGestures As InputGestureCollection
Property Value
The input gestures.
Examples
The following example shows how to add a new MouseGesture to a RoutedCommand.
MouseGesture PasteCmdMouseGesture = new MouseGesture(
MouseAction.MiddleClick, ModifierKeys.Alt);
ApplicationCommands.Paste.InputGestures.Add(PasteCmdMouseGesture);
Dim PasteCmdMouseGesture As New MouseGesture(MouseAction.MiddleClick, ModifierKeys.Alt)
ApplicationCommands.Paste.InputGestures.Add(PasteCmdMouseGesture)
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.