2014-07-01 89 views

回答

3

您可以新KeyGesture添加到命令的InputGetures收集

EditingCommands.IncreaseFontSize.InputGestures.Add(new KeyGesture(Key.Q, ModifierKeys.Control)); 

和修改現有的命令的手勢,你可以從清晰的列表清單共

ApplicationCommands.Copy.InputGestures.Clear(); 
ApplicationCommands.Copy.InputGestures.Add(new KeyGesture(Key.Q, ModifierKeys.Control)); 
刪除
相關問題