码迷,mamicode.com
首页 > 其他好文 > 详细

WP8——页面跳转方法

时间:2014-06-21 06:30:22      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:des   style   code   tar   ext   color   

 
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));

WP8——页面跳转方法,布布扣,bubuko.com

WP8——页面跳转方法

标签:des   style   code   tar   ext   color   

原文地址:http://www.cnblogs.com/jx270/p/3795477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!