Reputation: 104741
I tried:
<KeyBinding Key="S" Modifiers="Control, Shift"/>
And
<KeyBinding Key="S" Modifiers="Control|Shift"/>
But it doesn't work.
Upvotes: 3
Views: 1076
Reputation: 12776
From MSDN:
XAML Values
oneOrMoreModifierKeys One or more modifier keys, defined by the ModifierKeys enumeration, delimited with a "+" character.
So my guess is
<KeyBinding Key="S" Modifiers="Control+Shift"/>
Upvotes: 2