[]
Extends the CollectionBase class which notifies when items are being added or removed from the collection.
public abstract class NotifyCollection : CollectionBase, IList, ICollection, IEnumerable
Public MustInherit Class NotifyCollection
Inherits CollectionBase
Implements IList, ICollection, IEnumerable
Name | Description |
---|---|
NotifyCollection() |
Name | Description |
---|---|
OnClearComplete() | Performs additional custom processes after clearing the contents of the NotifyCollection instance. |
OnCollectionChanged(CollectionChangeEventArgs) | Raises the CollectionChanged event. |
OnInsertComplete(int, object) | Performs additional custom processes after inserting a new element into the NotifyCollection instance. |
OnRemoveComplete(int, object) | Performs additional custom processes after removing an element from the CollectionBase instance. |
Name | Description |
---|---|
CollectionChanged | Occurs when the collection has changed. |