Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
Mouse.MiddleButton Property
Definition
- Namespace:
- System.Windows.Input
- Assembly:
- PresentationCore.dll
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the state of the middle button of the mouse.
public:
static property System::Windows::Input::MouseButtonState MiddleButton { System::Windows::Input::MouseButtonState get(); };
public static System.Windows.Input.MouseButtonState MiddleButton { get; }
static member MiddleButton : System.Windows.Input.MouseButtonState
Public Shared ReadOnly Property MiddleButton As MouseButtonState
Property Value
The state of the middle mouse button.
Examples
The following example shows how to determine whether the middle mouse button is pressed by checking if the state of the MiddleButton is equal to the MouseButtonState enumeration value Pressed. If the button is pressed, a method is called which updates display elements in the sample.
if (Mouse.MiddleButton == MouseButtonState.Pressed)
{
UpdateSampleResults("Middle Button Pressed");
}
If Mouse.MiddleButton = MouseButtonState.Pressed Then
UpdateSampleResults("Middle Button Pressed")
End If
Applies to
See also
Feedback
Was this page helpful?
