Class BindableCollection<T>
Represents a collection of objects that can be individually bound to a .
Inheritance
BindableCollection<T>
Implements
ICollection<T>
Assembly: cs.temp.dll.dll
Syntax
public sealed class BindableCollection<T> : IBindableCollection<T>, IBindable
Type Parameters
Name |
Description |
T |
The type of elements in the collection.
|
Properties
Count
Declaration
public int Count { get; }
Property Value
Methods
Add(T)
Declaration
Parameters
Type |
Name |
Description |
T |
item |
|
Clear()
Declaration
Contains(T)
Declaration
public bool Contains(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
CopyTo(T[], Int32)
Declaration
public void CopyTo(T[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
T[] |
array |
|
Int32 |
arrayIndex |
|
Remove(T)
Declaration
public bool Remove(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Events
OnItemAdded
Declaration
public event Action<T> OnItemAdded
Event Type
Type |
Description |
Action<T> |
|
OnItemRemoved
Declaration
public event Action<T> OnItemRemoved
Event Type
Type |
Description |
Action<T> |
|
Implements
ICollection<>