MouseEventArgs.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 current state of the middle mouse button.
public:
property System::Windows::Input::MouseButtonState MiddleButton { System::Windows::Input::MouseButtonState get(); };
public System.Windows.Input.MouseButtonState MiddleButton { get; }
member this.MiddleButton : System.Windows.Input.MouseButtonState
Public ReadOnly Property MiddleButton As MouseButtonState
Property Value
The current state of the middle mouse button, which is either Pressed or Released. There is no default value.
Examples
The following example prints a message if the state of the MiddleButton property is Pressed.
if (e.MiddleButton == MouseButtonState.Pressed)
{
MessageBox.Show("The Middle Mouse Button is pressed");
}
If e.MiddleButton = MouseButtonState.Pressed Then
MessageBox.Show("The Middle Mouse Button is pressed")
End If
Remarks
The Mouse class provides additional properties and methods for determining the state of the mouse.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.