Skip to main content

WizardPageChangedEventArgs(BaseWizardPage, BaseWizardPage, Direction) Constructor

Initializes a new instance of the WizardPageChangedEventArgs class.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v23.2.dll

NuGet Package: DevExpress.Win

Declaration

public WizardPageChangedEventArgs(
    BaseWizardPage prevPage,
    BaseWizardPage page,
    Direction direction
)

Parameters

Name Type Description
prevPage BaseWizardPage

A BaseWizardPage descendant that represents the previously active wizard page. This value is assigned to the WizardPageChangedEventArgs.PrevPage property.

page BaseWizardPage

A BaseWizardPage descendant that represents the wizard page currently being selected. This value is assigned to the WizardPageEventArgs.Page property.

direction DevExpress.XtraWizard.Direction

A DevExpress.XtraWizard.Direction enumeration value that specifies in which direction a user navigates between pages. This value is assigned to the WizardPageChangedEventArgs.Direction property.

See Also