MouseEventArgs.RightButton 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 right mouse button.
public:
property System::Windows::Input::MouseButtonState RightButton { System::Windows::Input::MouseButtonState get(); };
public System.Windows.Input.MouseButtonState RightButton { get; }
member this.RightButton : System.Windows.Input.MouseButtonState
Public ReadOnly Property RightButton As MouseButtonState
Property Value
The current state of the right 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 RightButton property is Pressed.
if (e.RightButton == MouseButtonState.Pressed)
{
MessageBox.Show("The Right Mouse Button is pressed");
}
If e.RightButton = MouseButtonState.Pressed Then
MessageBox.Show("The Right Mouse Button is pressed")
End If
Remarks
The Mouse class provides additional properties and methods for determining the state of the mouse.
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.