WPF ReactiveUI フレームワークの新しいビュー ctor バインディングを取得して、Button クリックで動作している ReactiveCommand をバインドして、TextBox の MouseDown/click イベントに接続しようとしています。以下は動作しません。
public partial class KeypadNumberView
: IKeypadNumberView
, IViewFor<IOnScreenKeyboard>
{
public KeypadNumberView()
{
ViewModel = new KeyboardViewModel();
InitializeComponent();
this.Bind(ViewModel, x => x.EnteredText);
this.BindCommand(ViewModel, vm => vm.Delete, v => v.EnteredText, "MouseDown" ); // doesn't work
this.BindCommand(ViewModel, vm => vm.Delete); // <== works