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

WizardPage.ApplyChanges Event

Occurs when changes made by the user are about to be applied.

Namespace: DevExpress.XtraCharts.Wizard

Assembly: DevExpress.XtraCharts.v19.1.Wizard.dll

Declaration

public event ApplyChangesEventHandler ApplyChanges

Event Data

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

Property Description
Cancel Gets or sets a value indicating whether the event should be canceled. Inherited from CancelEventArgs.
Control Represents a user control embedded into the custom wizard page.

Remarks

Use this event to control whether the changes should be saved for the user-defined Wizard page.

To deny saving changes and disable switching to another pages, set the event argument’s property e.Cancel to true.

See Also