我正在使用MVVMLight创建一个应用程序。
在我的应用中,我有一个“目录”视图和一个Downloads
视图,每个视图都与它自己的ViewModel相关联,这些视图在ViewModelLocator
中声明:
public class ViewModelLocator
{
public ViewModelLocator()
{
ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default);
SimpleIoc.Default.Register<MainViewModel>();
SimpleIoc.Default.Register<CatalogViewModel>();
SimpleIoc.Default.Register<CreatorViewModel>();
SimpleIoc.Default.Register<DownloadsViewModel>();
Messenger.Default.Register<NotificationMessage>(this, NotifyUserMethod);
}
public MainViewModel Main
{
get
{
return ServiceLocator.Current.GetInstance<MainViewModel>();
}
}
public CatalogViewModel Catalog
{
get
{
return ServiceLocator.Current.GetInstance<CatalogViewModel>();
}
}
public DownloadsViewModel Downloads
{
get
{
return ServiceLocator.Current.GetInstance<DownloadsViewModel>();
}
}
public CreatorViewModel Creator
{
get
{
return ServiceLocator.Current.GetInstance<CreatorViewModel>();
}
}
private void NotifyUserMethod(NotificationMessage message )
{
MessageBox.Show(message.Notification);
}
public static void Cleanup()
{
// TODO Clear the ViewModels
}
}
我计划使用消息传递将我的selectedCatalogItems
发送到下载VM中的集合,但它仅在用户首次打开下载视图时才起作用。在另一种情况下,尚未创建下载视图模型,并且消息无处可去。
有没有办法在应用启动时调用Downdload VM的构造函数,还是应该使用专用类来存储我的下载列表?
答案 0 :(得分:1)
在应用程序的生命周期的早期获取视图模型的实例,因为服务定位器将在其缓存中保留它的实例。
public class ViewModelLocator {
static ViewModelLocator() {
SimpleIoc.Default.Register<MainViewModel>();
SimpleIoc.Default.Register<CatalogViewModel>();
SimpleIoc.Default.Register<CreatorViewModel>();
SimpleIoc.Default.Register<DownloadsViewModel>();
ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default);
//Default instance
//Done so an instance will be generated and held in cache
var defaultDownloadsViewModel = ServiceLocator.Current.GetInstance<DownloadsViewModel>();
}
public ViewModelLocator(){
Messenger.Default.Register<NotificationMessage>(this, NotifyUserMethod);
}
public MainViewModel Main
{
get
{
return ServiceLocator.Current.GetInstance<MainViewModel>();
}
}
public CatalogViewModel Catalog
{
get
{
return ServiceLocator.Current.GetInstance<CatalogViewModel>();
}
}
public DownloadsViewModel Downloads
{
get
{
return ServiceLocator.Current.GetInstance<DownloadsViewModel>();
}
}
private void NotifyUserMethod(NotificationMessage message )
{
MessageBox.Show(message.Notification);
}
public static void Cleanup()
{
// TODO Clear the ViewModels
}
}