Property | Type | Description | |
---|---|---|---|
AddItem | void | ||
DataList | System | ||
EnsureSnapShot | void | ||
IEditableCollection | object | ||
IEditableCollection | void | ||
IEnumerable | IEnumerator | ||
IPageableCollection | IEnumerable | ||
OnSourceCollectionChanged | void | ||
RaiseCollectionChanged | void | ||
RaiseCollectionReset | void | ||
RaisePropertyChanged | void | ||
RemoveItem | void | ||
RemoveItem | void | ||
UpdateVersion | void | ||
VerifyValidItem | void | ||
this | objectIIndexableCollection.System |
Method | Description | |
---|---|---|
DataList ( IEnumerable data ) : System |
Creates an instance of a DataList from the specified underlying data.
|
|
DataList ( IEnumerable data, |
Creates an instance of a DataList from the specified underlying data, and supplies the item type that goes into the list.
|
|
DataList ( IEnumerable data, bool enableCurrency ) : System |
Creates an instance of a DataList from the specified underlying data.
|
|
MoveNext ( ) : void |
Moves the current index forward.
|
|
MovePrevious ( ) : void |
Moves the current index back.
|
|
MoveToItem ( object item ) : void |
Sets the current item to the specified item.
|
|
UpdateFilter ( IPredicate |
Sets the predicate to use to filter the items contained in this DataList.
|
|
UpdateSort ( IComparer |
Sets the comparer to use to sort the items contained in this DataList.
|
|
this ( int index ) : object |
Gets the item at the specified index within the underlying data.
|
Method | Description | |
---|---|---|
AddItem ( object item, bool notifyPropertyChange ) : void | ||
DataList ( IEnumerable data, bool enableCurrency, |
||
EnsureSnapShot ( ) : void | ||
IEditableCollection ( ) : object | ||
IEditableCollection ( object item ) : void | ||
IEnumerable ( ) : IEnumerator | ||
IPageableCollection ( int pageIndex, int pageSize ) : IEnumerable | ||
OnSourceCollectionChanged ( object sender, |
||
RaiseCollectionChanged ( NotifyCollectionChangedAction action, object item, int index ) : void | ||
RaiseCollectionReset ( ) : void | ||
RaisePropertyChanged ( string propertyName ) : void | ||
RemoveItem ( object item, bool notifyPropertyChange ) : void | ||
RemoveItem ( object item, int index, bool notifyPropertyChange ) : void | ||
UpdateVersion ( ) : void | ||
VerifyValidItem ( object item ) : void | ||
this ( int index ) : objectIIndexableCollection.System |
public DataList ( IEnumerable data ) : System | ||
data | IEnumerable | The underlying data to abstract. |
return | System |
public DataList ( IEnumerable data, |
||
data | IEnumerable | |
itemType | ||
return | System |
public DataList ( IEnumerable data, bool enableCurrency ) : System | ||
data | IEnumerable | The underlying data to abstract. |
enableCurrency | bool | Whether to enable currency management. |
return | System |
public MoveToItem ( object item ) : void | ||
item | object | The item that should become the current item. |
return | void |
public UpdateFilter ( IPredicate | ||
predicate | IPredicate | The predicate to use; null if no filter is to be applied. |
return | void |
public UpdateSort ( IComparer | ||
comparer | IComparer | The comparer to use; null if no sort is to be applied. |
return | void |
public this ( int index ) : object | ||
index | int | The index to lookup. |
return | object |