JournalOwnership 枚举

定义

指定 Frame 是否使用自己的日记。 JournalOwnershipJournalOwnership 属性使用。

public enum class JournalOwnership
[System.Serializable]
public enum JournalOwnership
public enum JournalOwnership
[<System.Serializable>]
type JournalOwnership = 
type JournalOwnership = 
Public Enum JournalOwnership
继承
JournalOwnership
属性

字段

Automatic 0

Frame 是否创建和使用自己的日记取决于它的父级。

OwnsJournal 1

Frame 维护自己的日记。

UsesParentJournal 2

Frame 使用内容树中下一个可用导航宿主的日记(如果有的话)。 否则,将不保留 Frame 的导航历史记录。

示例

以下示例演示了向 Frame 主机 NavigationWindow生成日记管理。

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">

  <!-- Frame that uses its own journal -->
  <Frame JournalOwnership="OwnsJournal" Source="Page2.xaml" />

</Page>

注解

如果 JournalOwnership 为“自动”,则应用以下行为:

备注

Frame创建自己的日记后,切换到“自动”不起作用。

适用于