MouseEventArgs.XButton2 プロパティ

定義

マウスの第 2 拡張ボタンの状態を取得します。

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

プロパティ値

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

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

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

注釈

クラスには Mouse 、マウスの状態を判断するための追加のプロパティとメソッドが用意されています。

適用対象