I am able to use the bindinglist() as a datasource for my winforms gridview. I set a timer to randomly update an item in my binding list and the changes are correctly reflecting on the grid. I am using the Onpropertychanged and iNotifyPropertyChanged events in my data class, so my grid is updating with the correct values when the underlying data changes.
I would like to make the cell momentarily change color when the data is changed in that cell.
Is there a grid event that fires when the underlying data changes when using a bindinglist and the onpropertychanged notifiers?
I cannot seem to locate the correct grid event that fires when the data changes.