如何获取当前的LayoutAwarePage?

时间:2012-11-10 21:09:14

标签: windows-runtime windows-store-apps winrt-xaml

我没有询问当前LayoutAwarePage的类型

Type type = ((Frame)Window.Current.Content).CurrentSourcePageType;

但是关于当前页面的实例,我需要访问其属性

1 个答案:

答案 0 :(得分:10)

var frame = (Frame)Window.Current.Content;
var page = (LayoutAwarePage)frame.Content;