Update underline datasource (Datagridview)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?Sm9obg==?=

    Update underline datasource (Datagridview)

    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

    #2
    Re: Update underline datasource (Datagridview)

    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

    Comment

    Working...