WizardPageChangingEventArgs(BaseWizardPage, BaseWizardPage, Direction) Constructor
Initializes a new instance of the WizardPageChangingEventArgs class.
Namespace: DevExpress.XtraWizard
Assembly: DevExpress.XtraWizard.v25.1.dll
NuGet Package: DevExpress.Win
Declaration
public WizardPageChangingEventArgs(
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 current wizard page. This value is assigned to the WizardPageChangingEventArgs.Page property. |
| direction | DevExpress.XtraWizard.Direction | A DevExpress.XtraWizard.Direction enumeration value that specifies the navigation direction. This value is assigned to the WizardPageChangedEventArgs.Direction property. |
See Also