ReactiveUI doesn't have existing support for WinForms at the moment.
In order to get View Binding working with a new UI framework, you're
going to have to write some code. Specifically, you're probably going
to have to write (in order of importance):
* Startup code to set RxApp.DeferredScheduler to a ControlScheduler
* An implementation of ICreatesObservableForProperty that knows how to
bind to WinForms controls (i.e. if it asks for "Text", you go looking
for an event called "TextChanged" to hook)
* An implementation of ICreatesCommandBinding that knows how to bind
to WinForms buttons / menus / clicky things.
* A RoutedViewHost and ViewModelViewHost that derive from a WinForms
control instead of a WPF control.
Register the interface implementations with the service locator, check
out
https://github.com/reactiveui/ReactiveUI/blob/rxui4/ReactiveUI.Xaml/ServiceLocationRegistration.cs#L26
for an example.
As to your error, I believe it's trying to tell you that Items is a
read-only property, so you can't set it.
--
Paul Betts <
pa...@paulbetts.org>