Interface INotifyCollectionChanging
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 INotifyCollectionChanging
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
CollectionChanging
Occurs before the collection changes.
Declaration
event NotifyCollectionChangingEventHandler CollectionChanging
Event Type
NotifyCollectionChangingEventHandler
|