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.
Marc Gravell - 14 Mar 2008 21:55 GMT
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