NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

BindingsCollection CollectionChanged Event

Occurs when the collection is changed.

The following declaration shows the syntax for a method that handles the CollectionChanged event.

[Visual Basic]
Private Sub BindingsCollectionName_CollectionChanged( _
   ByVal sender As Object, _
   ByVal e As CollectionChangeEventArgs _
)
[C#]
private void BindingsCollectionName_CollectionChanged(
   object sender,
   CollectionChangeEventArgs e
);
[C++]
private: void BindingsCollectionName_CollectionChanged(
   Object* sender,
   CollectionChangeEventArgs* e
);
[JScript]
private BindingsCollectionName_CollectionChanged(
   sender : Object,
   e : CollectionChangeEventArgs
);

Parameters

sender
The source of the event.
e
A System.ComponentModel.CollectionChangeEventArgs that contains the event data.

See Also

BindingsCollection Class | BindingsCollection MembersTopic | System.WinForms Namespace