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

NavigationFrame.CanGoForward Property

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

Namespace: DevExpress.Xpf.WindowsUI

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

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

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