public MainPage()
{
this.InitializeComponent();
NavigationService.Navigate(new Uri("/SpillGuard.xaml", UriKind.Relative));
}
错误说导航服务在当前上下文中不存在。
答案 0 :(得分:0)
就像罗曼斯说的那样,下次尝试搜索一下。
NavigationService
不存在,因为它仅用于Windows Phone Silverlight应用程序。使用Frame.Navigate()
:
Frame.Navigate(typeof(YourPage), optionalParameter);