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

WizardControl.NavigationMode Property

Gets or sets whether clicking the Previous button navigates to the preceding or to the last visited page.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v19.1.dll

Declaration

[DefaultValue(NavigationMode.Sequential)]
[DXCategory("Behavior")]
public NavigationMode NavigationMode { get; set; }

Property Value

Type Default Description
DevExpress.XtraWizard.NavigationMode **Sequential**

A NavigationMode value that specifies which page is activated when clicking the Previous button.

Remarks

By default, clicking the Next button activates the following page. However, in this instance, you can activate another page by handling the WizardControl.SelectedPageChanging event.

The NavigationMode property specifies which page is visited when clicking on the Previous button. If the NavigationMode property is set to Sequential, clicking on the Previous button activates the preceding page. If the NavigationMode property is set to Stacked, clicking on the Previous button activates the last visited page.

See Also