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.CanGoForward Property

Gets whether the navigation forward within the NavigationFrame is currently possible.

Namespace: DevExpress.Xpf.WindowsUI

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

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public bool CanGoForward { get; protected set; }

#Property Value

Type Description
Boolean

true, if the navigation forward within the NavigationFrame is currently possible; otherwise, false.

#Remarks

Navigation forward is only possible if you have previously called the NavigationFrame.GoBack method (or an end-user has clicked the Back button). In other words, the CanGoForward property gets whether the NavigationFrame.GoForward method that can undo navigating back from a view will have an effect. See the NavigationFrame.GoForward method to learn more.

There is also the corresponding property for the NavigationFrame.GoBack method - the NavigationFrame.CanGoBack property.

See Also