WizardPage.ApplyChanges Event
Occurs when changes made by the user are about to be applied.
Namespace: DevExpress.XtraCharts.Wizard
Assembly: DevExpress.XtraCharts.v24.1.Wizard.dll
NuGet Package: DevExpress.Win.Charts
Declaration
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