Windows Phone在不同文件夹中的页面之间导航

本文关键字:之间 导航 文件夹 Phone Windows | 更新日期: 2023-09-27 17:53:40

views->passwordscreen->password.xaml

视图->主页.xaml

我使用从主页导航到password.xaml页面

NavigationService.Navigate(new Uri("/views/passwordscreen/password.xaml", UriKind.Relative));

然而,我无法从密码导航到主页,我尝试了几种方法,如何做到这一点?

NavigationService.Navigate(new Uri("/views/homepage.xaml", UriKind.Relative)); //doesn't work
NavigationService.Navigate(new Uri("/homepage.xaml", UriKind.Relative)); //doesn't work

异常:System.InvalidOperationException:在位置/homepage.XAML 处找不到XAML

Windows Phone在不同文件夹中的页面之间导航

我看不出有任何问题,请仔细检查您的文件夹路径和文件名,

NavigationService.Navigate(new Uri("/views/homepage.xaml", UriKind.Relative)); 

不管怎样,你可以这样做,因为你想回到同一个页面,

   function void GoBack()
    {
     if (this.NavigationService.CanGoBack)
     {
      this.NavigationService.GoBack();
     }
    }