DataGridView bound to BindingList does not refresh when value changed

ListChanged notifications for item value changes are only raised if the list item type implements the INotifyPropertyChanged interface.

Taken from: http://msdn.microsoft.com/en-us/library/ms132742.aspx

So my first question would be: Implements your item the INotifyPropertyChanged properly?

Leave a Comment