Skip to main content

JournalEntry.KeepAlive Property

Gets or sets whether the current entry’s content should be cached.

Namespace: DevExpress.Xpf.WindowsUI.Navigation

Assembly: DevExpress.Xpf.Controls.v23.2.dll

NuGet Package: DevExpress.Wpf.Controls

Declaration

public bool KeepAlive { get; set; }

Property Value

Type Description
Boolean

true, if the current entry’s content should be cached; otherwise, false.

Remarks

The KeepAlive property specifies whether a cached instance of the current JournalEntry‘s content should be reused when navigating to a View stored in this entry. The NavigationFrame.NavigationCacheMode property specifies the cache mode for all entries of a Journal, assigned to this NavigationFrame.

The KeepAlive property value is set automatically, depending on the frame’s NavigationFrame.NavigationCacheMode property. You do not need to specify the KeepAlive property manually.

See the NavigationFrame.NavigationCacheMode topic for details.

See Also