예제 #1
0
 protected override void OnDesktopContentGoBack()
 {
     if (ContentNavigationService.CanGoBack)
     {
         ContentNavigationService.GoBack();
     }
 }
예제 #2
0
 public void ShowDevices()
 {
     _frame.Go2ContentView(ContentNavigationService =>
     {
         ContentNavigationService.For <ContentViewModel>().Navigate();
     });
 }
예제 #3
0
 public void ShowClickItem()
 {
     _frame.Go2ContentView(ContentNavigationService =>
     {
         ContentNavigationService.For <ShellViewModel>()
         .Navigate();
     });
 }