我是 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 并且差异很小
(我们可以关闭这个问题)