I'm in favor of command binding in ReactiveUI and want to integrate into my current project, which based on MvvmCross.
I've followed the tutorial from Data Binding - WPF. I just modify View with IViewFor, but not ReactiveObject VIewModel because it inherits MvvmCross object.
Things working fine when I just bind command with basic set - Like ReactiveCommand.Create(TestCommand). But when I try to use one of the favorable feature, can execute (Create(command, canExecute), it doesn't work :(
It seems ViewModel = new TheViewModel(); in the tutorial just create another ViewModel instance for interaction. And any property change in my MvvmCross does not reflect to the ViewModel created in View.
So how to properly use ReactiveUI Command in MvvmCross WPF?