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

BaseEdit.PropertiesChanged Event

Fires immediately after any editor’s property value has changed.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v21.2.dll

NuGet Packages: DevExpress.Win.Design, DevExpress.Win.Navigation

Declaration

[DXCategory("Events")]
public event EventHandler PropertiesChanged

Event Data

The PropertiesChanged event's data class is EventArgs.

Remarks

This event is raised if any property value is changed by a programmatic modification or as the result of user actions.

The editor’s PropertiesChanged event is equivalent to the RepositoryItem.PropertiesChanged event available via the BaseEdit.Properties object, i.e. adding/removing an event handler for the current event actually affects the RepositoryItem.PropertiesChanged event.

See Also