c# – 如何在每个WPF窗口中处理快捷键?

前端之家收集整理的这篇文章主要介绍了c# – 如何在每个WPF窗口中处理快捷键?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想基于一些自定义逻辑打开帮助文件页面.如何处理用户在我的所有窗口(主窗口和模态对话框)上按F1键?

我知道如何在一个窗口中处理F1,但这可以全局完成,所以我不必在所有窗口中添加相同的代码吗?

以下是我尝试过的测试,F1在子窗口上不起作用.

Window1.xaml:

<Window x:Class="WpfApplication2.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Window.CommandBindings>
        <CommandBinding Command="ApplicationCommands.Help"
                        Executed="CommandBinding_Executed"/>
    </Window.CommandBindings>
    <Grid>
        <Button Content="Open a new window"
                Click="Button_Click"/>
    </Grid>
</Window>

Window1.xaml.cs:

using System.Windows;
using System.Windows.Input;

namespace WpfApplication2
{
    partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
        }

        void CommandBinding_Executed(object sender,ExecutedRoutedEventArgs e)
        {
            MessageBox.Show("Help");
        }

        void Button_Click(object sender,RoutedEventArgs e)
        {
            new Window().ShowDialog();
        }
    }
}

解决方法

我在 this页面找到了答案.
也就是说,将它放在主窗口的构造函数中,例如:
CommandManager.RegisterClassCommandBinding(typeof(Window),new CommandBinding(ApplicationCommands.Help,(x,y) => MessageBox.Show("Help")));
原文链接:https://www.f2er.com/csharp/99934.html

猜你在找的C#相关文章