Keyboard.IsKeyToggled(Key) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定指定的键是否处于切换状态。
public:
static bool IsKeyToggled(System::Windows::Input::Key key);
public static bool IsKeyToggled (System.Windows.Input.Key key);
static member IsKeyToggled : System.Windows.Input.Key -> bool
Public Shared Function IsKeyToggled (key As Key) As Boolean
参数
- key
- Key
指定的键。
返回
如果 key
处于切换状态,则为 true
;否则为 false
。
示例
以下示例演示如何使用 IsKeyToggled 方法确定特定键的状态。 密钥 Return 将传递给 IsKeyToggled 方法。 如果方法返回 true
,则 更改 的背景 Button 。
// Uses the Keyboard.IsToggled to determine if a key is toggled.
if (Keyboard.IsKeyToggled(Key.Return))
{
btnIsToggle.Background = Brushes.Red;
}
else
{
btnIsToggle.Background = Brushes.AliceBlue;
}
' Uses the Keyboard.IsToggled to determine if a key is toggled.
If Keyboard.IsKeyToggled(Key.Return) Then
btnIsToggle.Background = Brushes.Red
Else
btnIsToggle.Background = Brushes.AliceBlue
End If
注解
方法 GetKeyStates 可用于确定特定键的状态集。