有没有办法从任何子控件获取主页面对象?作为一种可能的解决方案,我看到这里冒泡父母并在父母属于PhoneApplicationPage类型时立即停止.这对我来说没问题,但是如果我需要从其他页面那样做呢?
即如何在应用程序中的任何位置获取应用程序的主页?
即如何在应用程序中的任何位置获取应用程序的主页?
在App.xaml中,有一个名为RootFrame的公共属性,它的类型为
PhoneApplicationFrame class.它是
PhoneApplicationPages的容器,为
discussed in this article.
原文链接:https://www.f2er.com/windows/363583.html您始终可以访问RootFrame,因为它位于应用程序范围内.所以,例如……
var frame = Application.Current.RootVisual as PhoneApplicationFrame; var startPage = frame.Content as PhoneApplicationPage;
您的应用开始的页面位于WMAppManifest.xml中…
<Tasks> <DefaultTask Name ="_default" NavigationPage="MainPage.xaml"/> </Tasks>