为什么这个?
MainWindow.xaml:
<Window x:Class="MVVMProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid>
<ContentControl Content="{Binding}"/>
</Grid>
</Window>
将您的 ExampleView.xaml 设置为:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vms="clr-namespace:MVVMProject.ViewModels">
<DataTemplate DataType="{x:Type vms:ExampleVM}" >
<Grid>
<ActualContent/>
</Grid>
</DataTemplate>
</ResourceDictionary>
并像这样创建窗口:
public partial class App : Application {
protected override void OnStartup(StartupEventArgs e) {
base.OnStartup(e);
MainWindow app = new MainWindow();
ExampleVM context = new ExampleVM();
app.DataContext = context;
app.Show();
}
}
什么时候可以做到这样?
App.xaml:(设置启动窗口/视图)
<Application x:Class="MVVMProject.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="ExampleView.xaml">
</Application>
ExampleView.xaml:(一个窗口而不是一个 ResourceDictionary)
<Window x:Class="MVVMProject.ExampleView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vms="clr-namespace:MVVMProject.ViewModels">
>
<Window.DataContext>
<vms:ExampleVM />
</Window.DataContext>
<Grid>
<ActualContent/>
</Grid>
</Window>
本质上是“作为数据模板查看”(VaD)与“作为窗口查看”(VaW)
以下是我对比较的理解:
- VaD:允许您在不关闭窗口的情况下切换视图。(这对我的项目来说是不可取的)
- VaD:VM 对视图一无所知,而在 VaW 中,它(仅)必须能够在打开另一个窗口时实例化它
- VaW:我实际上可以在设计器中看到我的 xaml(我不能使用 VaD,至少在我当前的设置中)
- VaW:直观地与打开和关闭窗口一起工作;每个窗口都有(是)一个对应的视图(和视图模型)
- VaD:ViewModel 可以通过属性传递初始窗口宽度、高度、可调整大小等(而在 VaW 中它们直接在窗口中设置)
- VaW:可以设置 FocusManager.FocusedElement(不确定在 VaD 中如何设置)
- VaW:文件较少,因为我的窗口类型(例如功能区、对话框)已合并到它们的视图中
那么这里发生了什么?我不能只在 XAML 中构建我的窗口,通过 VM 的属性干净地访问它们的数据,然后完成它吗?代码隐藏是相同的(几乎为零)。
我很难理解为什么我应该将所有 View 的东西都洗牌到 ResourceDictionary 中。