我是WPF的新手,我想在UWP之类的不同页面之间导航(感谢ViewModelLocator)。 我正在使用mvvm模式进行编程
有了UWP,就这么简单 =>
ServiceLocator.SetLocatorProvider(()=>SimpleIoc.Default);
SimpleIoc.Default.Register<HomeDeconnectedViewModel>();
NavigationService navigationPage = new NavigationService();
SimpleIoc.Default.Register<INavigationService>(() => navigationPage);
navigationPage.Configure("HomeDeconnected", typeof(HomeDeconnected));
谢谢大家
修改 为了解决这个问题,我使用此链接 https://gallery.technet.microsoft.com/Simple-navigation-2be2ef4a 我只是另外使用了mvvmLight,而且差别很小
(我们可以解决此问题)