WPF键绑定多个字符

时间:2018-12-18 10:50:49

标签: wpf key-bindings

我想使用此组合:Ctrl + Shift + Right + Left在代码背后创建一个KeyBinding,所以我这样做了:

    KeyBinding b = new KeyBinding()
    {
        Command = SpvCommands.ChangeUser,
        Key = Key.LeftCtrl,
        //Gesture = new KeyGesture(Key.LeftShiftKey);
    };
    InputBindings.Add(b);

如何创建具有多种组合的手势?

0 个答案:

没有答案