wpf-devexpress-dot-xpf-dot-windowsui-dot-navigationframe-48931643.md
Gets whether the navigation forward within the NavigationFrame is currently possible.
Namespace : DevExpress.Xpf.WindowsUI
Assembly : DevExpress.Xpf.Controls.v25.2.dll
NuGet Package : DevExpress.Wpf.Controls
public bool CanGoForward { get; protected set; }
Public Property CanGoForward As Boolean
| Type | Description |
|---|---|
| Boolean |
true, if the navigation forward within the NavigationFrame is currently possible; otherwise, false.
|
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