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

プロパティ値

マウスの右ボタンの現在の状態。Pressed または Released。 既定値はありません。

次の例では、 プロパティPressedの状態が の場合にメッセージをRightButton出力します。

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 、マウスの状態を判断するための追加のプロパティとメソッドが用意されています。

適用対象