Class WatchedList<T>
Inheritance
object
WatchedList<T>
Assembly: solution.dll
Syntax
public class WatchedList<T> : Collection<T>, INotifyCollectionChanged<T>
Type Parameters
Methods
ClearItems()
Declaration
protected override void ClearItems()
InsertItem(int, T)
Declaration
protected override void InsertItem(int index, T item)
Parameters
| Type |
Name |
Description |
| int |
index |
|
| T |
item |
|
RemoveItem(int)
Declaration
protected override void RemoveItem(int index)
Parameters
| Type |
Name |
Description |
| int |
index |
|
Events
CollectionChanged
Declaration
public event Action CollectionChanged
Event Type
ItemAdded
Declaration
public event Action<T> ItemAdded
Event Type
| Type |
Description |
| Action<T> |
|
ItemRemoved
Declaration
public event Action<T> ItemRemoved
Event Type
| Type |
Description |
| Action<T> |
|
Implements
Extension Methods