ModifiedKeys
is an enumeration of flags, so you can combine your values with the boolean OR ( |
) operator like this:
KeyBinding kb = new KeyBinding(TestCommand, Key.E, ModifierKeys.Control | ModifierKeys.Shift);
this.InputBindings.Add(kb);
a source
to share