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

WizardControl.SelectedPage Property

Gets or sets the currently selected wizard page.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v19.1.dll

Declaration

[DXCategory("Data")]
public BaseWizardPage SelectedPage { get; set; }

Property Value

Type Description
BaseWizardPage

A BaseWizardPage descendant that represents the selected wizard page.

Remarks

You can also use the WizardControl.SelectedPageIndex property to select the required wizard page by specifying its index.

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the SelectedPage property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also