MouseAction Enumeration
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
'Declaration <TypeConverterAttribute(GetType(MouseActionConverter))> _ Public Enumeration MouseAction As Byte 'Usage Dim instance As MouseAction
/** @attribute TypeConverterAttribute(System.Windows.Input.MouseActionConverter) */ public enum MouseAction
TypeConverterAttribute(System.Windows.Input.MouseActionConverter) public enum MouseAction
<object property="EnumerationValue" .../>
| Member name | Description | |
|---|---|---|
| LeftClick | A left mouse button click. | |
| LeftDoubleClick | A left mouse button double-click. | |
| MiddleClick | A middle mouse button click. | |
| MiddleDoubleClick | A middle mouse button double-click. | |
| None | No action. | |
| RightClick | A right mouse button click. | |
| RightDoubleClick | A right mouse button double-click. | |
| WheelClick | A mouse wheel rotation. |
The MouseAction enumeration specifies constants which correspond to actions performed by the mouse, such as RightClick and RightDoubleClick.
MouseAction can be used with a MouseGesture to create a input gesture which can be bound to a command using a MouseBinding. For more information about commanding, see the Commanding Overview.
The following example shows how to construct a MouseGesture using a MouseAction and how to bind the gesture to a RoutedCommand using a MouseBinding.
<MouseBinding MouseAction="MiddleClick" Command="ApplicationCommands.Cut" />
MouseGesture CutCmdMouseGesture = new MouseGesture( MouseAction.MiddleClick); MouseBinding CutMouseBinding = new MouseBinding( ApplicationCommands.Cut, CutCmdMouseGesture); // RootWindow is an instance of Window. RootWindow.InputBindings.Add(CutMouseBinding);
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.