我试过了:
<KeyBinding Key="S" Modifiers="Control, Shift"/>
和
<KeyBinding Key="S" Modifiers="Control|Shift"/>
但这是行不通的。
最佳答案
您可以使用:
<KeyBinding Modifiers="Ctrl+Shift" Key="S" Command="{Whatever}" />
手势也应该起作用:
<KeyBinding Gesture="Ctrl+Shift+S" Command="{Whatever}" />
有关更多详细信息,请参见here。