Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

NavigationFrame.PrefetchedSources Property

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

Namespace: DevExpress.Xpf.WindowsUI

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

NuGet Package: DevExpress.Wpf.Controls

#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