Class ObservableAssociationList<T>
An observable collection to store associated model elements
Inheritance
ObservableAssociationList<T>
Assembly: NMF.Models.dll
Syntax
public class ObservableAssociationList<T> : ObservableList<T>, IReadOnlyList<T>, IReadOnlyCollection<T>, IList, ICollection, INotifyCollectionChanging, INotifyPropertyChanged, INotifyCollectionChanged, IListExpression<T>, IList<T>, ICollectionExpression<T>, IEnumerableExpression<T>, IEnumerableExpression, ICollection<T>, IEnumerable<T>, IEnumerable where T : class, IModelElement
Type Parameters
Methods
|
Edit this page
View Source
ClearItems()
Declaration
protected override void ClearItems()
Overrides
NMF.Collections.ObjectModel.ObservableCollectionExtended<T>.ClearItems()
|
Edit this page
View Source
InsertItem(int, T)
Declaration
protected override void InsertItem(int index, T item)
Parameters
Type |
Name |
Description |
int |
index |
|
T |
item |
|
Overrides
|
Edit this page
View Source
RemoveItem(int)
Declaration
protected override void RemoveItem(int index)
Parameters
Type |
Name |
Description |
int |
index |
|
Overrides
|
Edit this page
View Source
SetItem(int, T)
Declaration
protected override void SetItem(int index, T item)
Parameters
Type |
Name |
Description |
int |
index |
|
T |
item |
|
Overrides
Implements