Skip to main content
A newer version of this page is available. .

NavigationFrame.PrefetchedSources Property

Gets or sets a list of containers to which this NavigationFrame can navigate.

Namespace: DevExpress.Xpf.WindowsUI

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Controls, DevExpress.Wpf.Navigation

Declaration

public IEnumerable PrefetchedSources { get; set; }

Property Value

Type Description
IEnumerable

An IEnumerable object that contains objects to which this NavigationFrame can navigate.

Remarks

NavigationFrame can navigate to any suitable container regardless of the PrefetchedSources list. Setting the PrefetchedSources list allows you to ignore all navigation properties and methods and cycle through containers just by calling the frame’s GoBack and GoForward methods.

Assigning a list to a PrefetchedSources property automatically executes actions specified by the NavigationFrame.PrefetchedSourcesOptions property.

See Also