Mouse.LeftButton 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得滑鼠左鍵的狀態。
public:
static property System::Windows::Input::MouseButtonState LeftButton { System::Windows::Input::MouseButtonState get(); };
public static System.Windows.Input.MouseButtonState LeftButton { get; }
static member LeftButton : System.Windows.Input.MouseButtonState
Public Shared ReadOnly Property LeftButton As MouseButtonState
屬性值
滑鼠左鍵的狀態。
範例
下列範例示範如何藉由檢查 的狀態 LeftButton 是否等於 MouseButtonState 列舉值 Pressed,判斷是否按下滑鼠左鍵。 如果按下按鈕,則會呼叫方法,以更新範例中的顯示元素。
if (Mouse.LeftButton == MouseButtonState.Pressed)
{
UpdateSampleResults("Left Button Pressed");
}
If Mouse.LeftButton = MouseButtonState.Pressed Then
UpdateSampleResults("Left Button Pressed")
End If