Prism 6中的ViewModelLocator无法正常工作

时间:2017-09-12 09:38:13

标签: c# wpf mvvm prism prism-6

我正在尝试在我的应用程序中实现ViewModelLocator模式,但ViewModel并未连接到视图。我是棱镜新手,如果我在这里遗漏任何东西,请告诉我。

查看:

<Window x:Class="WpfApp1.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:local="clr-namespace:WpfApp1"
        xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Wpf"
        prism:ViewModelLocator.AutoWireViewModel="True"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <TextBlock Text="{Binding Message}" FontSize="36" />
    </Grid>
</Window>

ViewModel:

class MainWindowViewModel : BindableBase
{
    string _message = "Hello World";
    public string Message
    {
        get { return _message; }
        set { SetProperty<string>(ref _message, value); }
    }
}

文件夹结构:

enter image description here

2 个答案:

答案 0 :(得分:4)

确保视图分别位于Views命名空间中,视图模型分别位于ViewModels中。

答案 1 :(得分:1)

将xaml文件和ViewModels文件夹中的WpfApp1.MainWindow更改为WpfApp1.Views.MainWindow,更改名称空间wpfApp1.ViewModels。这对我有用。