MVVM-Light和WPF用户控件库

时间:2018-08-06 07:48:21

标签: wpf mvvm user-controls mvvm-light

我将不得不在独立的用户控件库中创建WPF用户控件。 我想使用MVVM-light。 问题,SimpleIOC通常是在Main应用程序中设置的,并通过app.xaml作为资源添加到Main应用程序中。

如何最好地解决它,以便引用的用户控件库可以访问SimpleIOC容器? 我最好在哪里注册用户控件的ViewModel?

我发现以下线程似乎是相同的问题,但答案栏中提供的链接中不再包含有关解决方案的任何信息。 How can MVVM Light be used in a WPF User Control Library project?

2 个答案:

答案 0 :(得分:0)

目前尚不清楚您在哪一部分遇到问题。库中的视图模型可以与任何其他视图模型相同的方式注册:

SimpleIoc.Default.Register<MainViewModel>();
SimpleIoc.Default.Register<YourClassLibrary.YourClassLibViewModel>();
... etc ...

如果您的类库中有需要包含在主应用程序资源字典中的对象(例如DataTemplates等),则将它们放入ResourceDictionary中,就像通常在App.xaml中一样。...

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:local="clr-namespace:YourClassLibrary">

    <DataTemplate DataType="{x:Type local:YourClassLibViewModel}">
        <local:YourClassLibUserControl />
    </DataTemplate>

</ResourceDictionary>

...,然后将其添加到主应用程序的ResourceDictionary的MergedDictionaries列表中:

<Application.Resources>
    <ResourceDictionary>

        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="pack://application:,,,/YourClasssLibrary;component/YourResourceDictionary.xaml" />
        </ResourceDictionary.MergedDictionaries>

        <vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" xmlns:vm="clr-namespace:YourMainApp.ViewModel" />

    </ResourceDictionary>
</Application.Resources>

答案 1 :(得分:0)

如果独立类库中的视图依赖于视图模型定位器,而后者又依赖于视图模型类,则可以在视图模型项目中将ViewModelLocator类定义为单例并从用户控件库和WPF应用程序本身引用此项目:

enter image description here

ViewModels / ViewModelLocator.cs:

public sealed class ViewModelLocator
{
    private static readonly ViewModelLocator _instance = new ViewModelLocator();

    private ViewModelLocator()
    {
        ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default);
        SimpleIoc.Default.Register<MainViewModel>();
    }

    public static ViewModelLocator Instance => _instance;

    public MainViewModel Main
    {
        get
        {
            return ServiceLocator.Current.GetInstance<MainViewModel>();
        }
    }
}

视图/UserControl1.xaml:

<UserControl x:Class="Views.UserControl1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:viewModels="clr-namespace:ViewModels;assembly=ViewModels"
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300"
             DataContext="{Binding Main, Source={x:Static viewModels:ViewModelLocator.Instance}}">
    <Grid>

    </Grid>
</UserControl>

WpfApp4 / MainWindow.xaml:

<Window x:Class="WpfApp4.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:views="clr-namespace:Views;assembly=Views"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <views:UserControl1 />
    </Grid>
</Window>