MvvmCross将DataModel绑定到ViewModel

时间:2015-03-01 19:44:05

标签: c# android wcf mvvm mvvmcross

我编写了一个Windows Store应用程序,需要移植到Android。我试图在Visual Studio中使用MvvmCross和Xamarin来实现这一目标。在我的Windows应用程序中,我将使用XAML创建一个屏幕,并在文本框等中设置绑定到我的datamodel对象中的字段。我会从WCF服务引用中获取我的datamodel对象。在屏幕后面的代码中,我只是将根布局网格的datacontext设置为服务引用生成的datamodel对象。这很简单。

在MvvmCross中,您似乎基本上运行viewmodel以加载页面。 viewmodel中字段的语法与服务引用在datamodel中生成的语法完全相同。我知道Mvvm需要viewmodel作为datamodel和视图之间的垫片。有没有一种有效的方法将属性从datamodel,viewmodel传递到视图?我有服务引用工作并从WCF生成对象和数据。我可以将数据模型中存在的每个字段硬编码到viewmodel中,并将get set设置为来自datamodel对象的字段。我只是希望手动方式不那么简单。有什么建议吗?

1 个答案:

答案 0 :(得分:1)

@Stuart有一个很好的建议。这就是我做的。这是我的ViewModel:

public class InventoryViewModel
  : MvxViewModel
{
    public async void Init(Guid ID)
    {
        await MPS_Mobile_Driver.Droid.DataModel.ShipmentDataSource.GetShipmentInventory(ID);
        ShipmentInventory = ShipmentDataSource.CurrInventory;

        Shipment = await MPS_Mobile_Driver.Droid.DataModel.ShipmentDataSource.GetShipment((int)ShipmentInventory.idno, (short)ShipmentInventory.idsub);
    }

    private Shipment _Shipment;
    public Shipment Shipment
    {
        get { return _Shipment; }
        set { _Shipment = value; RaisePropertyChanged(() => Shipment); }
    }

    private ShipmentInventory _ShipmentInventory;
    public ShipmentInventory ShipmentInventory
    {
        get { return _ShipmentInventory; }
        set { _ShipmentInventory = value; RaisePropertyChanged(() => ShipmentInventory); }
    }
}

我传递一个Guid ID,在Init方法中,它获得了装运库存和关联装运。当我绑定字段时,我只是绑定到Shipment。如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:local="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
        <EditText
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            style="@style/InputEditText"
            local:MvxBind="Text Shipment.OrgEmail" />
</LinearLayout>

那就是它的全部!

希望这有助于某人。

吉姆