Method Generate
Generate<TValue>(IObservable<IList<TValue>>)
Generates an observable sequence of values containing the currently selected item in the list control whenever the selection changes.
protected override IObservable<TValue> Generate<TValue>(IObservable<IList<TValue>> source)
Parameters
source
IObservable<IList<TValue>>A sequence of collections representing the data sources to bind to the list control. Only one collection is bound at any one time.
Returns
- IObservable<TValue>
A sequence of values representing the currently selected item in the list control.
Type Parameters
TValue
The type of the values in the data source.