2

在下面的示例中,当文本获得焦点而不是按钮时,菜单被启用。我只用按钮和文本框试过了,但行为是一样的。

<Window x:Class="WpfPopup.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
<DockPanel>
    <Menu DockPanel.Dock="Top">
        <MenuItem  Command="ApplicationCommands.Paste" />
    </Menu>
    <TextBox BorderBrush="Black" BorderThickness="2" Margin="25" TextWrapping="Wrap" x:Name="text1" Height="58" Width="203" >
        The MenuItem will not be enabled until
        this TextBox gets keyboard focus
    </TextBox>        
    <Button Content="Button" Height="23" Name="button1" Width="93" Command="ApplicationCommands.Paste" />
</DockPanel>

4

1 回答 1

2

有两种简单的方法可以解决这个问题:

1)使用 FocusManager.IsFocusScope:

    <Button Content="Button" Height="23" Name="button1" Width="93" Command="ApplicationCommands.Paste" FocusManager.IsFocusScope="True"/>

2)手动设置按钮上的CommandTarget:

<Button Content="Button" Height="23" Name="button1" Width="93" Command="ApplicationCommands.Paste" CommandTarget="{Binding ElementName=text1}" />

您可能想知道为什么这适用于菜单项?如果您阅读FocusManager.IsFocusScope附加属性的文档,您将得到答案:

默认情况下,Window 类是焦点范围,Menu、ContextMenu 和 ToolBar 类也是如此。作为焦点范围的元素将 IsFocusScope 设置为 true。

当你不知道的时候非常混乱!

于 2012-05-21T10:42:26.917 回答