ModifierKeys 枚举

定义

指定修改键集。

此枚举支持其成员值的按位组合。

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
继承
ModifierKeys
属性

字段

Alt 1

Alt 键。

Control 2

CTRL 键。

None 0

没有按下任何修饰符。

Shift 4

Shift 键。

Windows 8

Windows 徽标键。

示例

以下示例演示如何创建将 KeyBindingRoutedCommand关联的 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 是 ModifiersKeyBindingKeyGestureMouseGesture 类的属性Keyboard

XAML 属性用法

<object property="oneOrMoreModifierKeys"/>  

XAML 值

oneOrMoreModifierKeys
一个或多个修饰键,由 ModifierKeys 枚举定义,用“+”字符分隔。

适用于

另请参阅