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

c#公共类获取当前页面

时间:2014-06-24 18:57:35      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   get   

c#公共类的时候,没法导航的问题,解决方法:

 private static PhoneApplicationFrame _frame;

      private static PhoneApplicationFrame Frame { get
      {
          return _frame ?? (_frame = (PhoneApplicationFrame) Application.Current.RootVisual);
      } }

    Deployment.Current.Dispatcher.BeginInvoke(() =>
          {
              if (MessageBox.Show(message.ToString(), "", MessageBoxButton.OKCancel) == MessageBoxResult.OK)
                  Frame.Navigate(new Uri(url, UriKind.Relative));
          });

 

c#公共类获取当前页面,布布扣,bubuko.com

c#公共类获取当前页面

标签:style   class   blog   code   color   get   

原文地址:http://www.cnblogs.com/defoliate/p/3805647.html

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