标签: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)); });
标签:style class blog code color get
原文地址:http://www.cnblogs.com/defoliate/p/3805647.html