Problem
The MouseBinding Tag in XAML is declaring a property „Gesture“, but it is hard to find a full reference / a complete list for all gestures of the MouseBinding tag.
Solution
Accepted gestures can be found in the enumeration MouseAction
LeftClick | 1 | A left mouse button click. |
LeftDoubleClick | 5 | A left mouse button double-click. |
MiddleClick | 3 | A middle mouse button click. |
MiddleDoubleClick | 7 | A middle mouse button double-click. |
None | 0 | No action. |
RightClick | 2 | A right mouse button click. |
RightDoubleClick | 6 | A right mouse button double-click. |
WheelClick | 4 | A mouse wheel rotation. |