dchaib / Caliburn.Micro.ReactiveUI

Caliburn.Micro screens and conductors rewritten to inherit from ReactiveUI ReactiveObject

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add ReactiveList<T> derived class that supports IObservableCollection<T>

fahadash opened this issue · comments

Caliburn.Micro has IObservableCollection which represents what we might call ReactiveList in ReactiveUI. But currently ReactiveList is not readily assignable as IObservableCollection. We might need to add a Type so we can do this

IObservableCollection myNumbers = new ReactiveCaliburnList();

It has been suggested in #20 as well. Do you have any other use case in mind?

Done with #23.