Prism 6 中的 ViewModelLocator 不工作

ViewModelLocator in Prism 6 not working

我正在尝试在我的应用程序中实现 ViewModelLocator 模式,但 ViewModel 未连接到视图。我是 Prism 的新手,如果我在这里遗漏了什么,请告诉我。

查看:

<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>

视图模型:

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

文件夹结构:

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

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