Reputation: 1345
Trying to see xamarin.Forms and ReactiveUI playing nicely together and I run into the following error when trying to bind to a xamarin.form button
Couldn't find a Command Binder for Xamarin.Forms.Button
using this code:
this.BindCommand (ViewModel, vm => vm.Register, v => v.register);
Am I missing something or do I need to do some special binding for these new xamarin.forms controls?
Upvotes: 0
Views: 1072
Reputation: 74654
It works, but support is brand new - you need to build ReactiveUI from source at the moment and include the new ReactiveUI.XamForms.dll
assembly.
Upvotes: 2