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

Journal.GoForward(Object) Method

Discards the back navigation and passes specific data to the NavigationFrame page that will be shown.

Namespace: DevExpress.Xpf.WindowsUI.Navigation

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

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

Declaration

public void GoForward(
    object param
)

Parameters

Name Type Description
param Object

An Object that is the parameter passed.

Remarks

When end-users navigate through NavigationFrame pages, all steps are written as entries into a Journal object. To navigate back to the previously viewed page, call the Journal.GoBack method. Vice versa, to undo this back navigation and return to the initially viewed page again, call the GoForward method. Both methods allow you to pass specific data between pages as a parameter. See the Navigation article to learn more about parameterized navigation.

See Also