我想使用此组合:Ctrl + Shift + Right + Left在代码背后创建一个KeyBinding,所以我这样做了:
KeyBinding b = new KeyBinding()
{
Command = SpvCommands.ChangeUser,
Key = Key.LeftCtrl,
//Gesture = new KeyGesture(Key.LeftShiftKey);
};
InputBindings.Add(b);
如何创建具有多种组合的手势?