0

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.

4

1 回答 1

1

我相信TableView.CellValueChanged事件应该适合您的需求。

相关帮助文章:获取和设置单元格值

于 2013-10-16T08:16:06.393 回答