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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.