System
4.0.0.0
System.Runtime.CompilerServices.TypeForwardedFrom("WindowsBase, Version=3.0.0.0, PublicKeyToken=31bf3856ad364e35")
You can enumerate over any collection that implements the interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the TLA2#tla_ui automatically, the collection must implement the interface. This interface exposes the event that must be raised whenever the underlying collection changes.
TLA2#tla_winclient provides the class, which is a built-in implementation of a data collection that exposes the interface. For an example, see Implement an Observable Collection.
The individual data objects within the collection must satisfy the requirements described in the Binding Sources Overview.
Before implementing your own collection, consider using or one of the existing collection classes, such as , , and , among many others.
If you have an advanced scenario and want to implement your own collection, consider using , which provides a non-generic collection of objects that can be individually accessed by index and provides the best performance.
Notifies listeners of dynamic changes, such as when items get added and removed or the whole list is refreshed.
Event
4.0.0.0
System.Collections.Specialized.NotifyCollectionChangedEventHandler
The event handler receives an argument of type ,which contains data that is related to this event.
Occurs when the collection changes.