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