0

我有以下xaml:

<Window x:Class="Isolator.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Isolator" Height="394" Width="486" Background="Black" WindowStyle="None" WindowState="Maximized">
    <Window.CommandBindings>
        <CommandBinding Command="Close" Executed="CommandBinding_Executed" CanExecute="CommandBinding_CanExecute"/>
    </Window.CommandBindings>
    <Window.ContextMenu>
        <ContextMenu>
            <MenuItem Header="Stop" Name="StopMenuItem" Click="StopMenuItem_Click" />
            <MenuItem Header="Close" Command="Close"/>

        </ContextMenu>
    </Window.ContextMenu>
    <Grid Loaded="Grid_Loaded">

    </Grid>
</Window>

关闭菜单项指定它应该使用关闭命令。Close 命令绑定指定应为 CanExecute 调用 CommandBinding_CanExecute,但永远不会调用 CommandBinding_CanExecute。关闭菜单项始终处于禁用状态。

我假设绑定没有发生。谁能解释为什么?

如果它与不在可视树中的上下文菜单有关,您如何解决它?

4

1 回答 1

1

这个声明Command="Close"没有任何作用。您是说命令是字符串“关闭”。这就是为什么它不起作用。

如果在 Window 中定义了 Close 命令实例,请使用Command="{Binding Close}". 或者,如果您使用的是 ApplicationCommands.Close,那么它将是

Command="{x:Static ApplicationCommands.Close}"
于 2009-05-20T17:39:00.650 回答