ModifierKeys Enumeration
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Windows.InputAssembly: WindowsBase (in windowsbase.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
'Declaration <TypeConverterAttribute(GetType(ModifierKeysConverter))> _ <FlagsAttribute> _ Public Enumeration ModifierKeys 'Usage Dim instance As ModifierKeys
/** @attribute TypeConverterAttribute(System.Windows.Input.ModifierKeysConverter) */ /** @attribute FlagsAttribute() */ public enum ModifierKeys
TypeConverterAttribute(System.Windows.Input.ModifierKeysConverter) FlagsAttribute public enum ModifierKeys
<object property="oneOrMoreModifierKeys"/>
oneOrMoreModifierKeys One or more modifier keys, defined by the ModifierKeys enumeration, delimited with a "+" character.
The Modifiers property on the Keyboard class is the set of the modifier keys which are currently pressed.
Some APIs in Windows Presentation Foundation (WPF) that make use of the ModifierKeys enumeration are the Modifiers properties on the Keyboard, KeyBinding, KeyGesture, and MouseGesture classes.
The following example shows how to create a KeyBinding that associates a KeyGesture with a RoutedCommand. The KeyBinding uses the ModifierKeys enumeration to specify the modifier key of the gesture.
<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);
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.