Frame.CurrentSourcePageType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前显示的内容的类型引用。
public:
property TypeName CurrentSourcePageType { TypeName get(); };
TypeName CurrentSourcePageType();
public System.Type CurrentSourcePageType { get; }
var typeName = frame.currentSourcePageType;
Public ReadOnly Property CurrentSourcePageType As Type
属性值
当前显示的内容的类型引用。
注解
CurrentSourcePageType 和 SourcePageType 通常是相同的值。 但是,如果框架调用 Navigate 并且导航仍在进行中,则 CurrentSourcePageType 是导航前的值, SourcePageType 是导航到的值。
提示
如果使用 Microsoft .NET 语言 (C# 或 Microsoft Visual Basic) 进行编程, TypeName 类型将投影为 System.Type。 使用 C# 编程时,通常使用 typeof 运算符来获取对某个类型的 System.Type 的引用。 在 Microsoft Visual Basic 中,使用 GetType。