Keyboard.IsKeyUp(Key) 方法

定义

确定指定的键是否处于松开状态。

public:
 static bool IsKeyUp(System::Windows::Input::Key key);
public static bool IsKeyUp (System.Windows.Input.Key key);
static member IsKeyUp : System.Windows.Input.Key -> bool
Public Shared Function IsKeyUp (key As Key) As Boolean

参数

key
Key

要检查的键。

返回

如果 key 处于松开状态,则为 true;否则为 false

示例

以下示例演示如何使用 IsKeyUp 方法确定特定键的状态。 密钥 ReturnIsKeyUp 传递给 方法。 如果 方法返回 true,则更改 的背景 Button

// Uses the Keyboard.IsKeyUp to determine if a key is up.
if (Keyboard.IsKeyUp(Key.Return))
{
    btnIsUp.Background = Brushes.Red;
}
else
{
    btnIsUp.Background = Brushes.AliceBlue;
}
' Uses the Keyboard.IsKeyUp to determine if a key is up.
If Keyboard.IsKeyUp(Key.Return) Then
    btnIsUp.Background = Brushes.Red
Else
    btnIsUp.Background = Brushes.AliceBlue
End If

注解

方法 GetKeyStates 可用于确定特定键的状态集。

适用于

另请参阅