gpt4 book ai didi

c# - 自定义命令不起作用

转载 作者:可可西里 更新时间:2023-11-01 08:23:04 26 4
gpt4 key购买 nike

在我的 XAML 中,我有这个:

<UserControl.CommandBindings>
<CommandBinding Command="Help"
CanExecute="HelpCanExecute"
Executed="HelpExecuted" />
</UserControl.CommandBindings>

<MenuItem Header="Help" Command="Help" />

这很好用。因此,当我单击上下文菜单时,会调用 HelpExecuted()。

现在我想再次做同样的事情,除了使用自定义命令而不是帮助命令。所以我做的是:

public RoutedCommand MyCustomCommand = new RoutedCommand();

并将我的 XAML 更改为:

<UserControl.CommandBindings>
<CommandBinding Command="MyCustomCommand"
CanExecute="HelpCanExecute"
Executed="HelpExecuted" />
</UserControl.CommandBindings>

<MenuItem Header="Help" Command="MyCustomCommand" />

但我收到错误消息:无法将属性“Command”中的字符串“MyCustomCommand”转换为“System.Windows.Input.ICommand”类型的对象。 CommandConverter 无法从 System.String 转换。

我在这里错过了什么?请注意,我想在 XAML 中完成所有操作,即不想使用 CommandBindings.Add(new CommandBinding(MyCustomCommand....

最佳答案

糟糕,抱歉,发布我的原始答案有点快。我现在看到问题不在于类型,而在于 CommandBinding。您需要使用标记扩展来解析命令名称。我通常在他们的声明中将我的命令设为静态,如下所示:

namespace MyApp.Commands
{
public class MyApplicationCommands
{
public static RoutedUICommand MyCustomCommand
= new RoutedUICommand("My custom command",
"MyCustomCommand",
typeof(MyApplicationCommands));
}
}

在 XAML 中:

<UserControl x:Class="..."
...
xmlns:commands="clr-namespace:MyApp.Commands">
...
<UserControl.CommandBindings>
<CommandBinding Command="{x:Static commands:MyApplicationCommands.MyCustomCommand}"
CanExecute="HelpCanExecute"
Executed="HelpExecuted" />
</UserControl.CommandBindings>

您需要使用 xmlns 引入包含类的 namespace 。我在上面的示例中将其称为“命令”。

原帖如下:

尝试将命令类型更改为 RoutedUICommand。构造函数有点不同:

public RoutedUICommand MyCustomCommand 
= new RoutedUICommand("Description", "Name", typeof(ContainingClass));

关于c# - 自定义命令不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4347216/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com