为什么MVVM Light中ViewModelLocator
的构造函数和成员不是静态的?考虑到我在构造函数中执行IOC注册过程,如下所示:
SimpleIoc.Default.Register<MainWindowVM>();
这是否意味着每次在 View (XAML)中使用它时,它将创建一个新的
ViewModelLocator
实例,从而一遍又一遍地注册我的类?另外,如果我需要在代码中访问它,该怎么办?我是否需要在每个地方创建ViewModelLocator的实例?
最佳答案
MVVMLight的ViewModelLocator
并不是静态设计的,也不是Singleton。这是因为您在App.xaml
中注册了一个全局实例:
<Application x:Class="Project.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
d1p1:Ignorable="d"
xmlns:d1p1="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vm="clr-namespace:Acoustix.ViewModel">
<Application.Resources>
<ResourceDictionary>
<vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
</ResourceDictionary>
</Application.Resources>
</Application>
此时,
ViewModelLocator
类的构造函数被调用,您可以在 View 中使用该实例:<Window x:Class="Project.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib"
DataContext="{Binding Main, Source={StaticResource Locator}}" Icon="Assets/app.ico">
<!-- ... -->
</Window>
关于c# - 为什么ViewModelLocator成员不是静态的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38872002/