Occurs when the collection is changed.
The following declaration shows the syntax for a method that handles the CollectionChanged event.
[Visual Basic] Private Sub TablesCollectionName_CollectionChanged( _ ByVal sender As Object, _ ByVal e As CollectionChangeEventArgs _ ) [C#] private void TablesCollectionName_CollectionChanged( object sender, CollectionChangeEventArgs e ); [C++] private: void TablesCollectionName_CollectionChanged( Object* sender, CollectionChangeEventArgs* e ); [JScript] private TablesCollectionName_CollectionChanged( sender : Object, e : CollectionChangeEventArgs );
TablesCollection Class | TablesCollection MembersTopic | System.Data Namespace