CommandBinding Ctrl +空格键
我在实现 RoutedUICommand 的 RoutedCommand 类中处理命令。这将帮助我通过检查 CanExecute 和 Execute(如果需要)来阻止或覆盖命令。我可以覆盖 EditingCommand、ApplicationCommand 等。我什至无法处理的命令之一是 Ctr + 空格键。它是 MediaCommand 还是我找不到的其他类型?我猜它是在其他地方处理的,这就是为什么我无法控制它。
I handle commands inside a RoutedCommand class that implements RoutedUICommand. This would help me to block or override a command by checking their CanExecute and Execute if needed. I can override EditingCommand, ApplicationCommand, etc.. One of the command that I cannot even handle is Ctr + Spacebar. Is it a MediaCommand or some other types that I cannot find? I guess it is been handled somewhere else, and that's why I cannot control it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建自己的自定义命令,也可以简单地为预定义命令添加新手势,例如:
You can create your own custom command or you can simply add new gesture for predefined command, e.g.:
我没有太多使用 WPF 命令的经验,但尝试为 Ctrl 和空格键创建自己的自定义命令。
请参阅本教程:http://www.switchonthecode。 com/tutorials/wpf-tutorial-command-bindings-and-custom-commands
I have not much experience using WPF commands, but try creating your own custom commands for Ctrl and Spacebar.
See this tutorial: http://www.switchonthecode.com/tutorials/wpf-tutorial-command-bindings-and-custom-commands