通过


MouseEventArgs.RightButton 属性

定义

获取鼠标右键的当前状态。

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

属性值

鼠标右键的当前状态,可以是 PressedReleased。 没有默认值。

示例

如果属性的状态 RightButtonPressed,以下示例将输出消息。

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

注解

Mouse 类提供用于确定鼠标状态的其他属性和方法。

适用于