在WPF中将快捷键分配给按钮

时间:2012-03-02 06:46:28

标签: c# wpf

我在我的一个wpf窗口中使用按钮。我将自定义路由UI命令绑定到按钮。

public static readonly RoutedUICommand DeleteRow = new RoutedUICommand("Delete Row", "Delete Row", typeof(TestDataView));

我想将Delete键指定为快捷方式。我怎样才能实现它?请指导我。如果您需要有关此问题的任何其他信息,请与我们联系。

此致 Priyank

1 个答案:

答案 0 :(得分:4)

使用此:

 DeleteRow.InputGestures.Add(new KeyGesture(Key.Delete));