ClassNotifiableCollection<T>
Class
Represents a collection of elements that can notify listeners when items are added, removed, or when the whole list is refreshed.
Definition
Namespace:Telerik.Windows.Documents.Utils
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Type Parameters:
T
The type of elements in the collection.
Syntax:
cs-api-definition
public class NotifiableCollection<T> : ObservableCollection<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged where T : class, INotifyPropertyChanged
Inheritance: objectCollection<T>ObservableCollection<T>NotifiableCollection<T>
Implements:
Inherited Members
Constructors
NotifiableCollection()
Declaration
cs-api-definition
public NotifiableCollection()
NotifiableCollection(IEnumerable<T>)
Declaration
cs-api-definition
public NotifiableCollection(IEnumerable<T> items)
Parameters
items
IEnumerable<T>
Methods
ClearItems()
Declaration
cs-api-definition
protected override void ClearItems()
Overrides
InsertItem(int, T)
Declaration
cs-api-definition
protected override void InsertItem(int index, T item)
Parameters
index
item
T
Overrides
RemoveItem(int)
Declaration
cs-api-definition
protected override void RemoveItem(int index)
Parameters
index
Overrides
SetItem(int, T)
Declaration
cs-api-definition
protected override void SetItem(int index, T item)
Parameters
index
item
T
Overrides
Events
ItemAdded
Declaration
cs-api-definition
public event EventHandler<NotifyCollectionItemAddedEventArgs> ItemAdded
Event Value
ItemChanged
Declaration
cs-api-definition
public event EventHandler<NotifyCollectionChangeEventArgs> ItemChanged
Event Value