KeyEventArgs.KeyStates 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取与此事件关联的键盘键的状态。
public:
property System::Windows::Input::KeyStates KeyStates { System::Windows::Input::KeyStates get(); };
public System.Windows.Input.KeyStates KeyStates { get; }
member this.KeyStates : System.Windows.Input.KeyStates
Public ReadOnly Property KeyStates As KeyStates
属性值
键的状态。
示例
以下示例通过对KeyStates键和Down枚举值的 执行按AND
位比较来检查与 实例KeyEventArgs关联的键是否已关闭。
// A bitwise AND operation is used in the comparison.
// e is an instance of KeyEventArgs.
// btnDown is a Button.
if ((e.KeyStates & KeyStates.Down) > 0)
{
btnDown.Background = Brushes.Red;
}
' A bitwise AND operation is used in the comparison.
' e is an instance of KeyEventArgs.
' btnDown is a Button.
If (e.KeyStates And KeyStates.Down) > 0 Then
btnDown.Background = Brushes.Red
注解
键可以同时处于向上和切换状态,也可以处于向下和切换状态。 因此,确定键是向上还是向下并不像检查 KeyStates 数值那样简单。 相反,应通过将值视为标志枚举来检查值。 使用第一个 AND
位的比较。 或者,使用帮助程序属性 IsUp、 IsDown和 IsToggled 来确定给定键是向上、向下还是已切换。