Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

JournalOwnership Enum

Definition

Namespace:
System.Windows.Navigation
Assembly:
PresentationFramework.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Specifies whether a Frame uses its own journal. JournalOwnership is used by the JournalOwnership property.

public enum class JournalOwnership
[System.Serializable]
public enum JournalOwnership
public enum JournalOwnership
[<System.Serializable>]
type JournalOwnership = 
type JournalOwnership = 
Public Enum JournalOwnership
Inheritance
JournalOwnership
Attributes

Fields

Name Value Description
Automatic 0

Whether or not this Frame will create and use its own journal depends on its parent.

OwnsJournal 1

The Frame maintains its own journal.

UsesParentJournal 2

The Frame uses the journal of the next available navigation host up the content tree, if available. Otherwise, navigation history is not maintained for the Frame.

Examples

The following example illustrates a Frame yielding journal management to a host NavigationWindow.

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

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

</Page>

Remarks

When JournalOwnership is Automatic, the following behavior applies:

Note

once a Frame creates its own journal, switching to Automatic has no effect.

Applies to


Feedback

Was this page helpful?