我有控件,它有导航按钮。请告诉我如何从页面上的用户控件进行导航。(具有UserControl的项目与具有页面的项目是分开的)。我尝试使用:框架导航(第二页的类型);但项目只能有一种关系。
两人都为我工作,从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)));