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
.
views:
32answers:
1
A:
Finally I found what I was looking for: I simply have to implement INotifyPropertyChanged
to notify the container (like a BindingList<T>
) of changes.
BTW: DataRow
seems to work a little different and does not implement this interface.
h0b0
2009-08-20 15:21:34