MouseEventArgs.XButton1 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得第一個延伸的滑鼠按鍵的目前狀態。
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
屬性值
第一個延伸的滑鼠按鍵的目前狀態,可能是 Pressed 或 Released。 沒有任何預設值。
範例
如果 屬性的狀態 XButton1 為 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
備註
類別 Mouse 提供用來判斷滑鼠狀態的其他屬性和方法。