I\'ve bound an ObservableCollection to a DataGrid. When I change values in the DataGrid, the RowEditEnding event is raised. But the e.Row.Item is the object before editing, so y
Attach to the ObservableCollection's changed event.
I bound to a DataTable and used the RowChanged event.