Какое свойство вы используете для привязки данных к XML-макету в MvvmLight? - PullRequest
0 голосов
/ 27 сентября 2019

Я целых два дня пытался выяснить, как вы связываете данные и команды с элементами макета, такими как кнопка или listView, и до сих пор у меня не было успеха, вот что я имею в качестве примера одного измои макеты.

Можете ли вы помочь мне?

<?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"
    android:minWidth="25px"
    android:minHeight="25px">
    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/srlStores"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="80"
        local:MvxBind="Refreshing IsBusy">
        <MvxListView
            android:minWidth="25px"
            android:minHeight="25px"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/lvStores"
            local:MvxBind="ItemsSource Stores; ItemClick OpenDetailCommand"
            local:MvxItemTemplate="@layout/store_list_item" />
    </android.support.v4.widget.SwipeRefreshLayout>
    <ProgressBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="20"
        android:id="@+id/progressBar1"
        local:MvxBind="Visible IsBusy" />
    <Button
        android:text="@string/storeListCreateButtonText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/bCreate"
        android:layout_weight="20"
        local:MvxBind="Click CreateCommand" />
</LinearLayout>

...