Mouse.MiddleButton Property
Definition
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