标签: windows-runtime windows-store-apps winrt-xaml
我没有询问当前LayoutAwarePage的类型
Type type = ((Frame)Window.Current.Content).CurrentSourcePageType;
但是关于当前页面的实例,我需要访问其属性
答案 0 :(得分:10)
var frame = (Frame)Window.Current.Content; var page = (LayoutAwarePage)frame.Content;