1

我正在尝试将 Prism(仅用于 CompositeUI)和 MVVM Light Toolkit(用于 MVVM 架构 =D)放在一起工作,但我在使用 Light ViewModelLocator 时遇到了一些问题。当我们将定位器用于“简单”的 WPF 应用程序时,我们可以使用 App.xaml 上的应用程序资源,如下所示:

<Application.Resources>
    <vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
</Application.Resources>

但是当我们使用 Prism 时,我们的业务代码在 Module 项目中,并且它没有 App.xaml,然后我尝试将该资源放在 View 资源中:

<Window.Resources>
    <ResourceDictionary>
        <vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
    </ResourceDictionary>
</Window.Resources>

它只是关闭了我的设计模式(以及运行时)错误,但视图没有出现在分配给它的区域中。

有人已经尝试过这样做吗?是否可以将 Prism 和 MVVM Light 一起工作?

这是我的“完整”代码:

(ViewLight.xaml)

<Window x:Class="TryERP2.Financeiro.View.ViewLight"
    ... a lot of NS ...
    mc:Ignorable="d"
    xmlns:vm="clr-namespace:TryERP2.Financeiro.ViewModel"
    d:DesignHeight="150" d:DesignWidth="245" SizeToContent="WidthAndHeight">
    <Window.Resources>
        <ResourceDictionary>
            <vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
        </ResourceDictionary>
    </Window.Resources>

    <Grid DataContext="{Binding Light, Source={StaticResource Locator}}">
        <Button Content="{Binding MyButtonText}" HorizontalAlignment="Stretch" Name="button1" VerticalAlignment="Stretch" />
    </Grid>
</Window>

ViewLightModel.cs:

public class ViewLightModel : ViewModelBase
{
    public ViewLightModel()
    { }

    public const string MyButtonTextPropertyName = "MyButtonText";
    private string _myButtonText = "Button Text";

    public string MyButtonText
    {
        get
        { return _myButtonText; }

        set
        {
            if (_myButtonText == value)
            { return; }

            _myButtonText = value;
            RaisePropertyChanged(MyButtonTextPropertyName);
        }
    }
}

Financeiro.cs(模块初始化程序类......部分显示......就在我注册和“调用”视图的地方):

        var container = ServiceLocator.Current.GetInstance<IUnityContainer>();
        container.RegisterType<Object, ViewLight>("ViewLight");

        var regionManager = ServiceLocator.Current.GetInstance<IRegionManager>();
        var main = new Uri("ViewLight", UriKind.Relative);
        regionManager.RequestNavigate("Desktop", main);

“正常” MVVM Light Application 有一个 App.xaml 文件,(我认为)没有在 Prism 模块视图中使用。该文件具有以下结构:

<Application x:Class="TryERP2.Financeiro.App"
         ... a lot of NS ...
         xmlns:vm="clr-namespace:TryERP2.Financeiro.ViewModel"
         StartupUri="MainWindow.xaml"
         mc:Ignorable="d">

    <Application.Resources>
        <vm:ViewModelLocator x:Key="Locator"
                             d:IsDataSource="True" />
    </Application.Resources>

</Application>

这就是我执行应用程序时发生的情况。模块上的 View 应该被加载到这个空白区域,显示它的 Button,但什么也没发生:

http://imageshack.us/photo/my-images/818/capturarwy.png

当我尝试更改此视图并在其位置放置一个“简单视图”(不使用 MVVMLight)时,它可以完美运行,如下图所示:

http://imageshack.us/photo/my-images/513/capturar1a.png

4

2 回答 2

0

在 ViewLight.xaml 你应该改变

<Window.Resources>
    <ResourceDictionary>
        <vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
    </ResourceDictionary>
</Window.Resources>

<Window.Resources>
        <vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
</Window.Resources>

因为 Window.Resources 已经是一个 ResourceDictionary,并且您在其中创建了另一个。您无法在此处访问定位器资源:

<Grid DataContext="{Binding Light, Source={StaticResource Locator}}">

另一种选择是使用 MergedDictionary。

于 2012-01-15T23:10:57.687 回答
0

对不起。我犯了一个大错误。您可能已经注意到,我正在构建一个功能区应用程序,并且试图在空白区域下显示控件。那里可以显示的项目是控件。它不起作用,因为我试图显示一个窗口:

<Window x:Class="TryERP2.Financeiro.View.ViewLight"
... a lot of NS ...
mc:Ignorable="d"
xmlns:vm="clr-namespace:TryERP2.Financeiro.ViewModel"
d:DesignHeight="150" d:DesignWidth="245" SizeToContent="WidthAndHeight">
... etc

我通过将其更改为用户控件而不是窗口来修复它,并且效果很好。

我的新 ViewLight.xaml:

<UserControl x:Class="TryERP2.Financeiro.View.ViewLight"
        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"
        mc:Ignorable="d"
        xmlns:vm="clr-namespace:TryERP2.Financeiro.ViewModel"

        d:DesignHeight="150" d:DesignWidth="245">
    <UserControl.Resources>
        <vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
    </UserControl.Resources>

    <Grid DataContext="{Binding Light, Source={StaticResource Locator}}">
        <Button Content="{Binding MyButtonText}" HorizontalAlignment="Stretch" Name="button1" VerticalAlignment="Stretch" />
    </Grid>
</UserControl>

我的新 ViewLight.xaml.cs(代码隐藏):

public partial class ViewLight : UserControl
{
    public ViewLight()
    {
        InitializeComponent();
    }
}

而 ViewModel 还是一样的。

于 2012-01-16T13:36:40.870 回答