我有一个仪表板,当构造函数被调用时,它从DB获取数据并相应地更新listbox
。导航到新选项卡以将元素添加到数据库并导航回仪表板后,视图不会更新。我已经定义了ObservableCollection
,例如,如果我从仪表板视图中的列表中删除元素,它就能正常工作。
因为我使用了Prism
,所以我在仪表板上实现了INavigationAware
,当以这种方式完成更新时,更新是双向的(删除和添加新的),但问题是我需要保持一致的另一个属性不会保持一致,因为当我导航回视图时,整个ViewModel
类都会再次实例化。
下面是构造函数:
public DashboardViewModel()
{
service = new Service.ServiceManager();
controller = ServiceController.GetServices().FirstOrDefault(x => x.ServiceName == service.ServiceName);
lbPlugins = new ObservableCollection<Plugin>();
lbPlugins.AddRange(new DbRepository().GetContext().PluginSet);
StartStopInit();
}
可以通过该程序安装win服务,并且dashboard会检查该服务是处于启动模式还是停止模式:
private void StartStopService()
{
if (startStopTxt == "Start")
{
service.StartService();
}
else
{
service.StopService();
}
}
问题是,如果我实现INavigationAware
,服务会以某种方式被覆盖。我正在检查它是否获取了正确的名称,它看起来生成了一个新实例,现在我可以启动服务again...which is...but again...which是不可能的……
发布于 2016-11-28 14:46:20
我看不到任何new
服务管理器的理由。使用unity将其注册为单例,并将其注入为依赖项:
// in the bootstrapper / module initialization
Container.RegisterType<ServiceManager>( new ContainerControllerLifetimeManager() );
// in the view model's constructor
public DashboardViewModel( ServiceManager serviceManager )
{
serviceManager.StartOrStopTheService();
}
https://stackoverflow.com/questions/40845449
复制