KeyBinding::Gesture Property
.NET Framework (current version)
Gets or sets the gesture associated with this KeyBinding.
Assembly: PresentationCore (in PresentationCore.dll)
public: [TypeConverterAttribute((KeyGestureConverter^::typeid))] property InputGesture^ Gesture { virtual InputGesture^ get() override; virtual void set(InputGesture^ value) override; }
Property Value
Type: System.Windows.Input::InputGesture^The key sequence. The default value is null.
| Exception | Condition |
|---|---|
| ArgumentException | the value gesture is being set to is not a KeyGesture. |
With the exception of the function keys and the numeric keypad keys, a KeyGesture must contain a Key and one or more ModifierKeys.
The following example shows how to bind a KeyGesture to a RoutedCommand using a KeyBinding (the markup and code examples specify different keys but are otherwise equivalent).
<Window.InputBindings> <KeyBinding Command="ApplicationCommands.Open" Gesture="CTRL+R" /> </Window.InputBindings>
.NET Framework
Available since 3.0
Available since 3.0
Show: