0
在項目中,我以這種方式顯示Window
:訪問頁面的功能
MainWindow mainWindow = new MainWindow();
mainWindow.Show();
比我在自己的框架加載Page
:
mainWindow.frame.NavigationService.Navigate(new Uri("PageWelcome.xaml", UriKind.Relative));
PageWelcome
包含一些公共功能如下:
public void Play()
{
mediaElement.Play();
}
現在來自上面的初始類,我想調用Play
方法。 這樣做的正確方法是什麼? 我必須檢索框架的當前內容?
這個解決方案有什麼問題嗎? '((PageWelcome)mainWindow.frame.Content).Play();' – Mark