KeyEventArgs.IsUp 属性

定义

获取指示事件引用的键是否处于松开状态的值。

public:
 property bool IsUp { bool get(); };
public bool IsUp { get; }
member this.IsUp : bool
Public ReadOnly Property IsUp As Boolean

属性值

如果该键处于松开状态,则为 true;否则为 false。 无默认值。

示例

下面的示例通过获取 属性的状态IsUp来检查与 实例KeyEventArgs关联的键是否已启动。

// e is an instance of KeyEventArgs.
// btnIsUp is a Button.
if (e.IsUp)
{
    btnIsUp.Background = Brushes.Red;
}
' e is an instance of KeyEventArgs.
' btnIsUp is a Button.
If e.IsUp Then
    btnIsUp.Background = Brushes.Red

注解

Keyboard 还提供有关键盘上键的状态的信息。 例如, IsKeyUp 方法返回指定的 是否已启动。

适用于

另请参阅