Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BaseEdit.PropertiesChanged Event

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

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: 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