Generic list that implements the INotifyCollectionChanged interface to notify changed. Does additionally implement ObservableList.MoveToLowerIndex and ObservableList.MoveToHigherIndex as well as ObservableList.AddRange.
Constructor | Description |
Full Usage:
ObservableList()
|
|
|
|
Instance member | Description | ||
Full Usage:
this.Add
Parameters:
'T
Modifiers: abstract |
|
||
|
Adds a range of items to the list.
|
||
Full Usage:
this.Clear
Modifiers: abstract |
|
||
Full Usage:
this.CollectionChanged
Returns: IEvent<NotifyCollectionChangedEventHandler, NotifyCollectionChangedEventArgs>
Modifiers: abstract |
|
||
Full Usage:
this.Contains
Parameters:
'T
Returns: bool
Modifiers: abstract |
|
||
Full Usage:
this.CopyTo
Parameters:
'T[]
arrayIndex : int
Modifiers: abstract |
|
||
Full Usage:
this.Count
Returns: int
Modifiers: abstract |
|
||
Full Usage:
this.ExchangeItemsAtIndices
Parameters:
int
-
The index of the one item.
idx2 : int
-
The index of the other item.
|
Exchanges the item at index idx1 with the item at idx2.
|
||
|
|
||
Full Usage:
this.IndexOf
Parameters:
'T
Returns: int
Modifiers: abstract |
|
||
Full Usage:
this.Insert
Parameters:
int
item : 'T
Modifiers: abstract |
|
||
Full Usage:
this.IsReadOnly
Returns: bool
Modifiers: abstract |
|
||
Full Usage:
this.[arg1]
Returns: int
Modifiers: abstract |
|
||
Full Usage:
this.MoveToHigherIndex
Parameters:
int
-
The index of the item to move.
|
Moves the item at index idx to the index idx+1. The item at index idx+1 is moved to index idx.
|
||
Full Usage:
this.MoveToLowerIndex
Parameters:
int
-
The index of the item to move.
|
Moves the item at index idx to the index idx-1. The item at index idx-1 is moved to index idx.
|
||
Full Usage:
this.PropertyChanged
Returns: IEvent<PropertyChangedEventHandler, PropertyChangedEventArgs>
Modifiers: abstract |
|
||
Full Usage:
this.Remove
Parameters:
'T
Returns: bool
Modifiers: abstract |
|
||
Full Usage:
this.RemoveAt
Parameters:
int
Modifiers: abstract |
|