KeyEventArgs.IsDown 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指示事件引用的键是否处于按下状态的值。
public:
property bool IsDown { bool get(); };
public bool IsDown { get; }
member this.IsDown : bool
Public ReadOnly Property IsDown As Boolean
属性值
如果该键处于按下状态,则为 true
;否则为 false
。
示例
以下示例通过获取 属性的状态IsDown来检查与 实例KeyEventArgs关联的键是否关闭。
// e is an instance of KeyEventArgs.
// btnIsDown is a Button.
if (e.IsDown)
{
btnIsDown.Background = Brushes.Red;
}
' e is an instance of KeyEventArgs.
' btnIsDown is a Button.
If e.IsDown Then
btnIsDown.Background = Brushes.Red
注解
类 Keyboard 还提供有关键盘上键的状态的信息。 例如, IsKeyDown 方法返回指定的键是否关闭。