gpt4 book ai didi

c# - 绑定(bind)到不在代码隐藏中的 RoutedUICommand

转载 作者:太空狗 更新时间:2023-10-29 20:06:32 25 4
gpt4 key购买 nike

我有一个静态类,其中包含我想在绑定(bind)中使用的 RoutedUICommand。

public static class CommandLibrary
{
public static ProjectViewModel Project { get; set; }

public static RoutedUICommand AddPage { get; private set; }

static CommandLibrary()
{
AddPage = new RoutedUICommand("AddPage", "AddPage", typeof(CommandLibrary));

}

public static void AddPage_Executed(object sender, ExecutedRoutedEventArgs args)
{
Project.AddPage();
}

public static void AddPage_CanExecute(object sender, CanExecuteRoutedEventArgs args)
{
// We need a project before we can add pages.
if (Project != null)
{
args.CanExecute = true;
}
else
{
// Did not find project, turning Add Page off.
args.CanExecute = false;
}
}
}

当我尝试为这个 AddPage 命令创建一个 CommandBinding 时,VS 大发雷霆,提示它在 Window1 中找不到 AddPage_CanExecute...考虑到我看到的所有示例都表明这个 XAML 应该考虑到我已有的代码,没问题:

<Window x:Class="MyProject.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:MyProject">
<Menu>
<Menu.CommandBindings>
<CommandBinding Command="local:CommandLibrary.AddPage"
Executed="AddPage_Executed" CanExecute="AddPage_CanExecute" />
</Menu.CommandBindings>
<MenuItem Header="_Page">
<MenuItem Header="_New" Command="local:CommandLibrary.AddPage" />
</MenuItem>
</Menu>
</Window>

我也试过不包括 Menu.CommandBindings 部分并简单地使用它(根据 this question 建议但不具体):

<MenuItem Header="_New" Command="{x:Static local:CommandLibrary.AddPage}" />

这阻止了错误流,但它生成的菜单项始终被禁用! CanExecute 似乎永远不会被调用。我假设在这种情况下绑定(bind)也失败了,尽管更安静。

为什么 VS 讨厌我的命令并拒绝在正确的位置查找 Executed 和 CanExecute 方法?我已经看到很多示例(在 Pro WPF 由 Matthew McDonald 和几个在线自定义命令教程)完成的,就像我正在做的那样。

最佳答案

CommandBinding 就像可视化树中的任何其他元素一样。其上指定的任何事件都将由可视化树的根(在本例中为您的 Window)处理。这意味着如果您将 AddPage_ExecutedAddPage_CanExecute 移动到您的窗口代码后面,它将起作用。这允许您在许多 UI 组件中使用相同的命令,但具有不同的处理程序。

但是,我看到您的命令针对您的 View 模型执行了一些逻辑。为了节省您的时间和挫折感,请了解路由命令在这里是错误的解决方案。相反,将您的命令封装在您的 View 模型中,如下所示:

public class ProjectViewModel
{
private readonly ICollection<PageViewModel> _pages;
private readonly ICommand _addPageCommand;

public ProjectViewModel()
{
_pages = new ObservableCollection<PageViewModel>();
_addPageCommand = new DelegateCommand(AddPage);
}

public ICommand AddPageCommand
{
get { return _addPageCommand; }
}

private void AddPage(object state)
{
_pages.Add(new PageViewModel());
}
}

A DelegateCommand是调用委托(delegate)来执行和查询命令的 ICommand 的实现。这意味着命令逻辑全部包含在命令中,您不需要 CommandBinding 来提供处理程序(您根本不需要 CommandBinding)。所以你的 View 只是绑定(bind)到你的虚拟机,如下所示:

<MenuItem Header="_New" Command="{Binding AddPageCommand}"/>

我建议您通读本系列文章,了解更多背景信息:

关于c# - 绑定(bind)到不在代码隐藏中的 RoutedUICommand,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1281178/

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