Windows Phone 8.1从usercontrol导航

时间:2015-03-21 13:05:55

标签: windows-phone-8 navigation windows-phone-8.1

我有控制权,它有导航按钮。请告诉我如何从页面上的用户控件导航。(带有UserControl的项目与带有页面的项目分开)。 我试着用: Frame.Navigate(typeof运算(SecondPage)); 但项目只能有一种关系。

1 个答案:

答案 0 :(得分:1)

两者都为我工作,从UserControl导航到Page:

1。 (Window.Current.Content as Frame).Navigate(typeof(MyUserControl));

2。   await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => (Window.Current.Content as Frame).Navigate(typeof(MyUserControl)));