MouseBinding::Gesture Property

 

Gets or sets the gesture associated with this MouseBinding.

Namespace:   System.Windows.Input
Assembly:  PresentationCore (in PresentationCore.dll)

public:
[TypeConverterAttribute((MouseGestureConverter^::typeid))]
property InputGesture^ Gesture {
	virtual InputGesture^ get() override;
	virtual void set(InputGesture^ value) override;
}

Property Value

Type: System.Windows.Input::InputGesture^

The gesture.

Exception Condition
ArgumentException

Gesture is set to null.

A MouseGesture is a MouseAction with or without a set of ModifierKeys. Unlike a KeyGesture, a MouseGesture does not need to have a modifier key associated with it.

The following example show how to create a binding between a MouseGesture to a RoutedCommand.

<MouseBinding Gesture="Alt+MiddleClick"
              Command="ApplicationCommands.New" />
No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: