Click on button i.e. .Activated not invoked once OrderOut is called
问题 The Button.Activated or Button's Action is not getting called for some reason, which I can not find. The code goes like this. In the ViewController's constructor: _whenActivated = this.WhenActivated(x => SetupBindings(x)); Then have a methods: private void SetupBindings(CompositeDisposable disposables) { this.BindCommand(ViewModel, vm => vm.ContinueCommand, v => v._loginButton) .DisposeWith(disposables); Observable.FromEventPattern( h => _cancelButton.Activated += h, h => _cancelButton