Update underline datasource (Datagridview)

  • Thread starter Thread starter John
  • Start date Start date
J

John

When I check/uncheck a checkbox in my datagridview, the datasource is
updated. How can I catch the event that the datasource has been updated?
Thanks.
 
What is the datasource? Does it support notifications?

If it is List<T>, try using BindingList<T> - then you can listen to
ListChanged on either the BindingSource or the BindingList<T>, and
check for a range of notification types, most likely ItemChanged.

Marc
 
Back
Top