Skip to main content

PropertyEditor.ControlValueChanged Event

Occurs after the underlying control’s value has been changed.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v25.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler ControlValueChanged

Event Data

The ControlValueChanged event's data class is EventArgs.

Remarks

Handle this event to perform custom actions with the newly set control value. XAF handles the ControlValueChanged event of all Property Editors to promptly react to control value changes - for example, to enable the Save action.

PropertyEditor descendants use the OnControlValueChanged method to raise the ControlValueChanged event. In custom Property Editors, call the OnControlValueChanged method after the control value changes, as shown in the following examples:

See Also