CommandBindings / InputBindings和RoutedCommand.InputGestures

时间:2015-03-31 12:03:33

标签: c# .net wpf

我无法理解RoutedCommand中的一些功能。 可以创建RoutedCommand并附加一些输入手势:

HomeZoomPanCommand = new RoutedCommand();
HomeZoomPanCommand.InputGestures.Add(new KeyGesture(Key.F10, ModifierKeys.None));

现在我必须将命令添加到CommandBindings集合中,这对我来说非常清楚。

通常我会假设,如果我想让F10使用这个命令,我还需要在InputBindings中添加一个KeyBinding。这对我来说也很清楚。

但是当我已经将InputGestures分配给RoutedCommand时会发生什么?我假设手势会自动添加到InputBindings集合中,但显然不是。

出于什么原因有两种不同的方式。命令上的InputGesture是否真的有用,或者只是在菜单中显示任何函数?

0 个答案:

没有答案