Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating KeyBinding in WPF with more than one modifier key

Tags:

wpf

The way I created KeyBinding was something like:

<KeyBinding Modifiers="Ctrl" Key="S" Command="{Binding SaveCommand}" />

But what if I needed two modifier keys? For example, Ctrl + Shift.

like image 716
Jiew Meng Avatar asked Oct 29 '10 08:10

Jiew Meng


4 Answers

The documentation states that you can just separate the modifiers with the + character:

<KeyBinding Modifiers="Ctrl+Shift" Key="S" Command="{Binding SaveCommand}" />

See here for the gory details, with the relevant bits extracted below in case the link ever disappears:


XAML

<object property="oneOrMoreModifierKeys"/>

XAML Values

oneOrMoreModifierKeys — One or more modifier keys, defined by the ModifierKeys enumeration, delimited with a + character.


You can also use a gesture on its own rather than a key/modifier combo:

<KeyBinding Gesture="Ctrl+Shift+S" Command="{Binding SaveCommand}" />

as per that same documentation link:

When defining a KeyBinding in XAML, there are two ways to specify the KeyGesture.

The first way to establish a KeyBinding in XAML is to define the Gesture attribute of the KeyBinding element, which enables a syntax to specify keys and modifiers as a single string, for example "CTRL+P".

The second way is to define the Key attribute and the Modifiers attributes of the KeyBinding element.

Both ways of setting the KeyGesture are equivalent and modify the same underlying object, but there will be a conflict if both are used. In the case when the Key, Modifiers, and the Gesture attributes are all set, the attribute which is defined last will be used for the KeyGesture.

like image 119
paxdiablo Avatar answered Nov 13 '22 00:11

paxdiablo


<KeyBinding Command="{Binding SaveCommand}"
            Gesture="Ctrl+Shift+S" />

See the MSDN documentation, KeyBinding Class.

like image 42
Aurelien Ribon Avatar answered Nov 13 '22 02:11

Aurelien Ribon


I know the question is for XAML, but here's a sample if you want to do it in code (multiple ModifierKeys can be specified via logical OR):

new KeyBinding( SaveCommand, Key.S, ModifierKeys.Control | ModifierKeys.Shift )
like image 6
KornMuffin Avatar answered Nov 13 '22 02:11

KornMuffin


Here is my code to implement multiple character shortcut keys, such as Alt + P + A in WPF MVVM.

Add this to your XAML (attached behavior for the KeyDown event):

cb:ShortCutBehavior.Command="{Binding Shortcuts.CmdKeyPressed}"

Add this to your view model:

ShortCuts Shortcuts = new ShortCuts( this );

//Add Plenty of shortcuts here until your heart is desired

Shortcuts.AddDoubleLetterShortCut( AddOrganization, Key.P, Key.A, ModifierKeys.Alt, true);
Shortcuts.AddSingleLetterShortCut( CmdAddNewAgreement, Key.A, ModifierKeys.Alt);

These are two examples of adding shortcuts. The first is a double letter shortcut: Alt + P + A which runs the method AddOrganization() and the second is a single letter shortcut: Alt + A which executes the ICommand CmdAddNewAgreemnt.

Both AddDoubleLetterShortCut and AddSingleLetterShortCut are overloaded to accept Actions or ICommands.

This is one of my first attempts at generisizing something, so you can take the idea and make it suitable for you.

like image 2
Terence Avatar answered Nov 13 '22 00:11

Terence