我在我的一个wpf窗口中使用按钮。我将自定义路由UI命令绑定到按钮。
public static readonly RoutedUICommand DeleteRow = new RoutedUICommand("Delete Row", "Delete Row", typeof(TestDataView));
我想将Delete键指定为快捷方式。我怎样才能实现它?请指导我。如果您需要有关此问题的任何其他信息,请与我们联系。
此致 Priyank
答案 0 :(得分:4)
使用此:
DeleteRow.InputGestures.Add(new KeyGesture(Key.Delete));