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

WizardControl.PrevClick Event

Fires after the Back button has been clicked and allows you to cancel the operation.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v18.2.dll

Declaration

public event WizardCommandButtonClickEventHandler PrevClick

Event Data

The PrevClick event's data class is WizardCommandButtonClickEventArgs. The following properties provide information specific to this event:

Property Description
Handled Gets or sets whether an event was handled.
Page Gets the processed wizard page. Inherited from WizardPageEventArgs.

Remarks

By default, clicking the Back button automatically navigates an end-user to the previous wizard page within the WizardControl.Pages collection. Once clicked, the PrevClick event is raised, which allows you to cancel the operation by setting the WizardCommandButtonClickEventArgs.Handled parameter to true. The current page is returned by the event parameter’s WizardPageEventArgs.Page property.

To learn more, see Page Events.

See Also