有没有办法将命令绑定到鼠标按钮,类似于如何绑定到键盘按钮?
我使用我的键盘命令执行此操作:
Application.Current.MainWindow.InputBindings.Add(new KeyBinding(this.NavigateForward, Key.Y, ModifierKeys.Control));
我想做这样的事情
Application.Current.MainWindow.InputBindings.Add(new KeyBinding(this.NavigateForward, MouseButtons.XButton1)); //Not possible?
答案 0 :(得分:0)
我邀请您尝试使用MvvMlight Toolkit库,它以干净的方式公开EventToCommand
操作,任何操作都可以与该操作相关。它也适用于Sliverlight,Windows Phone和Windows应用商店应用程序。