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.v19.2.dll

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the PropertiesChanged event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also