8

我想将帮助文件打开到基于一些自定义逻辑的页面。如何处理用户在我的所有窗口(主窗口和模式对话框)上按 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();
        }
    }
}
4

1 回答 1

11

我在这个页面上找到了答案。也就是说,将其放在主窗口的构造函数中,例如:

CommandManager.RegisterClassCommandBinding(typeof(Window),
    new CommandBinding(ApplicationCommands.Help,
        (x, y) => MessageBox.Show("Help")));
于 2009-07-17T18:00:37.673 回答