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

WizardControl.SelectedPageIndex Property

Gets or sets the current wizard page.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v21.2.dll

NuGet Packages: DevExpress.Win, DevExpress.Win.Design

Declaration

[DXCategory("Data")]
public int SelectedPageIndex { get; set; }

Property Value

Type Description
Int32

An integer value that specifies the wizard page’s position within the WizardControl.Pages collection.

Remarks

You can also use the WizardControl.SelectedPage property to select the required wizard page.

End-users can navigate between wizard pages via navigation buttons.

Changing the current wizard page raises the WizardControl.SelectedPageChanging event, which allows you to cancel the action. After a new wizard page has been selected, the WizardControl.SelectedPageChanged event is raised.

See Also