WPF能否判断鼠标当前是UP还是Down的状态?
如题?
------解决方案--------------------
我无语了。
Mouse.LeftButton 属性
类型:System.Windows.Input.MouseButtonState
鼠标左键的状态。
下面的示例演示如何通过检查 LeftButton 的状态是否等于 MouseButtonState 枚举值 Pressed 来确定是否按下了鼠标左键。如果按下了该按钮,则调用一个方法来更新此示例中的显示元素。
if (Mouse.LeftButton == MouseButtonState.Pressed)
{
UpdateSampleResults("Left Button Pressed");
}