I am using a DevExpress.Xpf.Grid.GridControl
, where one of the columns is bound to a property with getter and setter, and is therefore editable.
The class the grid is bound to cannot be modified.
I'd like to have an event fired when the value of that column is edited, so to trigger some operations. With the WinForms version, there was an event RepositoryItem.EditValueChanged
event. The XPF version of GridControl replaced RepositoryItem
with BaseEditSettings
, yet I couldn't find an equivalent to the EditValueChanged
event.