KeyBinding::Gesture Property

 

Gets or sets the gesture associated with this KeyBinding.

Namespace:   System.Windows.Input
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>
No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: