首页 > 代码库 > WP8——页面跳转方法
WP8——页面跳转方法
1.页面传值:
this.NavigationService.Navigate(new Uri("/SecondPage.xaml?CustomerId=1234&Product=555", UriKind.Relative));
protected override void OnNavigatedTo(NavigationEventArgs e)
{
base.OnNavigatedTo(e);
foreach (var item in NavigationContext.QueryString)
{
MessageBox.Show("Query String [" + item.Key + "] = " + item.Value);
}
}
或:
this.NavigationService.Navigate(new Uri("/SecondPage.xaml#HelloWorld",
UriKind.Relative));
Protected override void OnFragmentNavigation(System.Windows.Navigation.FragmentNavigationEventArgs e)
{
base.OnFragmentNavigation(e);
MessageBox.Show("Fragment: " + e.Fragment);
}
2.在非页面层调用页面跳转:
//跳转页面
(Application.Current.RootVisual as Microsoft.Phone.Controls.PhoneApplicationFrame
).Navigate(new Uri("/MainPages/SecondPages/GameDetails.xaml", UriKind.Relative));
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。