MvvmCross是否允许将ViewModel属性绑定到动态创建的控件?

时间:2013-07-18 02:58:31

标签: xamarin.android

我有一个应用程序,其中大多数控件都是在代码中创建的,然后使用AddView方法添加到布局中。框架是否允许使用代码将ViewModel属性绑定到控件,或者它必须仅在axml文件中完成?

2 个答案:

答案 0 :(得分:9)

好吧,经过多次努力,我终于得到了答案。

我必须做以下事情。

1)添加了一个import语句:

using Cirrious.MvvmCross.Binding.BindingContext;

2)添加了以下代码:

protected override void OnCreate(Bundle bundle)
{
    base.OnCreate(bundle);
    SetContentView(Resource.Layout.Hello);

    TableLayout containerLayout = this.FindViewById<TableLayout>(Resource.Id.containerLayout);
    if (containerLayout != null)
    {                          
        TableRow newRow = new TableRow(base.ApplicationContext);
        newRow.SetMinimumHeight(50);

        var txtRace = new EditText(ApplicationContext);
        txtRace.Hint = "Race";

        var bindingSet = this.CreateBindingSet<HelloView, HelloViewModel>();
        bindingSet.Bind(txtRace).To(vm => vm.Race);
        bindingSet.Apply();

        newRow.AddView(txtRace);
        containerLayout.AddView(newRow);
    }
}

我的HelloView.axml文件中已经有一个“TableLayout”,我正在做的就是创建一个新的EditText框控件(txtRace)并将其添加到视图中,同时将其绑定到“ Race“HelloViewModel对象的属性。

我花了很多时间试图找出存在什么命名空间的CreateBindingSet()方法,因为VS2012没有给我任何关于它的智能。

希望这可以帮助遇到类似问题的人。

答案 1 :(得分:2)

是MvvmCross支持将绑定属性绑定到在运行时创建的控件。您可以在他的N + 1系列中观看由Stuart先生制作的精彩教程。 http://www.youtube.com/watch?feature=player_embedded&v=cYu_9rcAJU4

注意:他已经在这个系列中多次展示过,但我记得现在这个问题已经出现了。