以 IEventAgrrregator 作为参数的 ViewModel 构造函数

ViewModel constructor with IEventAgrrregator as argument

在我的应用程序中,我通常使用不带任何参数的 ViewModel 构造函数,并从 xaml 中定位我的 ViewModel,如下所示。

<UserControl.Resources>
    <ResourceDictionary>
        <vm:TabViewModel  x:Key ="vm" ></vm:TabViewModel>
    </ResourceDictionary>
</UserControl.Resources>

通过使用它,我可以在设计时轻松地在 xaml 中引用我的 ViewModel 属性。

<Grid x:Name="grid" DataContext="{Binding Source={StaticResource ResourceKey=vm}}">

但是,由于我会在两个 ViewModel 之间进行通信,所以我开始使用 Prism 6(事件聚合器)。

public TabViewModel(IEventAggregator eventAggregator)
    {
        this.eventAggregator = eventAggregator;
        tabPoco = new TabWindowPoco();

        tabPoco.Tag = "tag";
        tabPoco.Title = "Title";

        tabPoco.ListDataList = new ObservableCollection<ListData>();

        tabPoco.ListDataList.Add(new ListData() { Name = "First", Age = 10, Country = "Belgium" });
        tabPoco.ListDataList.Add(new ListData() { Name = "Second", Age = 11, Country = "USA" });
        tabPoco.ListDataList.Add(new ListData() { Name = "Third", Age = 12, Country = "France" });
    }

我正在使用 Bootstrapper 加载应用程序。

由于我使用的是IEventAggregator,我不得不使用prism:ViewModelLocator.AutoWireViewModel="True"来定位ViewModel。否则,应用程序不运行。现在,我无法将 ViewModel 用作资源,也无法将其附加到 DataContext。

我不希望 Prism 自动定位相应的 ViewModel,我希望对其进行控制。我想在 xaml 中找到它并将其分配给 DataContext。

有人知道我该怎么做吗?

您似乎未能设置依赖项注入容器。 Dependency injection uses a preset mapping 接口类型和具体类型之间。您的映射将类似于此(Prism/EntLib 5 个示例):

public class Bootstrapper : UnityBootstrapper
{
    protected override void ConfigureContainer()
    {
        base.ConfigureContainer();

        this.Container.RegisterType<IMyViewModel, SomeViewModel>();
        this.Container.RegisterType<IFooViewModel, SomeOtherViewModel>();
    }
}

稍后当您拨打电话时:

this.DataContext = container.Resolve<IMyViewModel>();

这比这个小例子所建议的更强大 - 您可以从容器(或区域管理器)新建一个视图,并最终自动解析它的所有依赖项。

要在 XAML 中维护智能感知等,您可以在 XAML 中指定视图模型的 type

<UserControl x:Class="YourNamespace.YourFancyView"
             ...
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:myNamespaceAlias="clr-namespace:PathToMyViewModelsInterface" 
             mc:Ignorable="d" 
             d:DesignHeight="100" d:DesignWidth="100"
             d:DataContext="{d:DesignInstance myNamespaceAlias:IMyViewModel, IsDesignTimeCreatable=False}" 
             ...
             >
</UserControl>

查看相关的 SO 问题 and Using Design-time Databinding While Developing a WPF User Control 了解更多信息。