ModifierKeys 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定修改键集。
此枚举支持其成员值的按位组合。
public enum class ModifierKeys
[System.ComponentModel.TypeConverter(typeof(System.Windows.Input.ModifierKeysConverter))]
[System.Flags]
public enum ModifierKeys
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Input.ModifierKeysConverter))>]
[<System.Flags>]
type ModifierKeys =
Public Enum ModifierKeys
- 继承
- 属性
字段
Alt | 1 | Alt 键。 |
Control | 2 | CTRL 键。 |
None | 0 | 没有按下任何修饰符。 |
Shift | 4 | Shift 键。 |
Windows | 8 | Windows 徽标键。 |
示例
以下示例演示如何创建将 KeyBinding 与 RoutedCommand关联的 KeyGesture 。 使用 KeyBindingModifierKeys 枚举来指定手势的修饰键。
<Window.InputBindings>
<KeyBinding Command="ApplicationCommands.Open"
Gesture="CTRL+R" />
</Window.InputBindings>
// Creating a KeyBinding between the Open command and Ctrl-R
KeyBinding OpenCmdKeyBinding = new KeyBinding(
ApplicationCommands.Open,
Key.R,
ModifierKeys.Control);
this.InputBindings.Add(OpenCmdKeyBinding);
' Creating a KeyBinding between the Open command and Ctrl-R
Dim OpenCmdKeyBinding As New KeyBinding(ApplicationCommands.Open, Key.R, ModifierKeys.Control)
Me.InputBindings.Add(OpenCmdKeyBinding)
注解
Modifiers类上的 Keyboard 属性是当前按下的修饰键集。
使用 枚举Windows Presentation Foundation (WPF) ModifierKeys 中的一些 API 是 Modifiers 、KeyBinding、 KeyGesture和 MouseGesture 类的属性Keyboard。
XAML 属性用法
<object property="oneOrMoreModifierKeys"/>
XAML 值
oneOrMoreModifierKeys
一个或多个修饰键,由 ModifierKeys 枚举定义,用“+”字符分隔。