Interface INotifyCollectionChanged
Notifies listeners of dynamic changes, such as when items get added and removed or the whole list is refreshed.
Namespace: Telerik.WinControls.Data
Assembly: Telerik.WinControls.dll
Syntax
public interface INotifyCollectionChanged
Remarks
You can enumerate over any collection that implements the IEnumerable interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the UI automatically, the collection must implement the INotifyCollectionChanged interface. This interface exposes the CollectionChanged event that must be raised whenever the underlying collection changes.
Events
CollectionChanged
Occurs when the collection changes.
Declaration
event NotifyCollectionChangedEventHandler CollectionChanged
Event Type
NotifyCollectionChangedEventHandler
|