我在 MainWindow 中有一个页面转换(一个控件),我有很多用户控制页面,我想从我的用户控制页面访问 MainWindow 中的页面转换?我怎么做?我试过了 :
Story page = new Story();
NavigationService nav = NavigationService.GetNavigationService(this);
// Navigate to the page, using the NavigationService
// if (nav != null)
// {
// nav.Navigate(page);
MainWindow test = new MainWindow();
test.pageTransition1.ShowPage(page);
// }