CommandBinding Ctrl +空格键

发布于 2024-08-12 16:06:46 字数 216 浏览 4 评论 0原文

我在实现 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

稀香 2024-08-19 16:06:46

您可以创建自己的自定义命令,也可以简单地为预定义命令添加新手势,例如:

public Window1()
    {
        InitializeComponent();
        ApplicationCommands.Find.InputGestures.Add(new KeyGesture(Key.Space, ModifierKeys.Control));
        CommandBinding commandBinding = new CommandBinding(ApplicationCommands.Find, myCommandHandler);
        this.CommandBindings.Add(commandBinding);
    }

    private void myCommandHandler(object sender, ExecutedRoutedEventArgs args)
    {
        MessageBox.Show("Command invoked!");
    }

You can create your own custom command or you can simply add new gesture for predefined command, e.g.:

public Window1()
    {
        InitializeComponent();
        ApplicationCommands.Find.InputGestures.Add(new KeyGesture(Key.Space, ModifierKeys.Control));
        CommandBinding commandBinding = new CommandBinding(ApplicationCommands.Find, myCommandHandler);
        this.CommandBindings.Add(commandBinding);
    }

    private void myCommandHandler(object sender, ExecutedRoutedEventArgs args)
    {
        MessageBox.Show("Command invoked!");
    }
猛虎独行 2024-08-19 16:06:46

我没有太多使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文