MouseEventArgs.XButton1 Property

Definition

Gets the current state of the first extended mouse button.

public:
 property System::Windows::Input::MouseButtonState XButton1 { System::Windows::Input::MouseButtonState get(); };
public System.Windows.Input.MouseButtonState XButton1 { get; }
member this.XButton1 : System.Windows.Input.MouseButtonState
Public ReadOnly Property XButton1 As MouseButtonState

Property Value

The current state of the first extended 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 XButton1 property is Pressed.

if (e.XButton1 == MouseButtonState.Pressed)
{
    MessageBox.Show("The XButton1 Mouse Button is pressed");
}
If e.XButton1 = MouseButtonState.Pressed Then
    MessageBox.Show("The XButton1 Mouse Button is pressed")
End If

Remarks

The Mouse class provides additional properties and methods for determining the state of the mouse.

Applies to