When a change is made to a DataRow instance, the controls it is bound to are updated automatically. How does this work? I’d like to implement something similar for an own class that I bind to a DataGridView.
When a change is made to a DataRow instance, the controls it is bound
Share
Finally I found what I was looking for: I simply have to implement
INotifyPropertyChangedto notify the container (like aBindingList<T>) of changes.BTW:
DataRowseems to work a little different and does not implement this interface.