1

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
4

1 に答える 1

0

それはうまくいくようです。http://github.com/reactiveui/reactiveuiでバグを報告できますか?

于 2012-10-26T18:38:07.310 に答える