1

我在 InputBindings 中定义了一个带有键绑定的窗口。他们第一次工作,当我将焦点放在表单上的任何控件上时。

但是当显示一个消息框并且我按下“确定”时,它们的快捷键不起作用,直到我将焦点设置在我的窗口中的一个控件上。

我的输入绑定:

<Window.InputBindings>
    <KeyBinding Gesture="Ctrl+N" Command="{x:Static local:MainWindow.NewMenuCommand}" />
    <KeyBinding Gesture="Ctrl+O" Command="{x:Static local:MainWindow.OpenMenuCommand}" />
    <KeyBinding Gesture="Ctrl+S" Command="{x:Static local:MainWindow.SaveMenuCommand}" />
    <KeyBinding Gesture="Ctrl+Q" Command="{x:Static local:MainWindow.CloseMenuCommand}" />
</Window.InputBindings>

我的命令绑定:

<Window.CommandBindings>
    <CommandBinding Command="{x:Static local:MainWindow.NewMenuCommand}" Executed="NewEntity" />
    <CommandBinding Command="{x:Static local:MainWindow.OpenMenuCommand}" Executed="OpenEntity" />
    <CommandBinding Command="{x:Static local:MainWindow.SaveMenuCommand}" Executed="SaveEntity" />
    <CommandBinding Command="{x:Static local:MainWindow.CloseMenuCommand}" Executed="CloseEntity" />
</Window.CommandBindings>
4

1 回答 1

1

我之前也遇到过这个问题,它与你窗口的焦点有关,但我实际上找到了一个 hack 来解决它 -

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Activated="HandleWindowActivated"
    Title="Window1" Height="300" Width="300">

在你的代码后面把焦点放在窗口上 -

private void HandleWindowActivated(object sender, EventArgs e)
{
    this.Focus();
} 
于 2011-04-29T14:58:55.383 回答