我有一个MvxListview,我需要检索被单击项的索引值,以便可以将其传递给即将到来的ViewModel。

是否有针对此的Mvvmcross具体解决方案?是否有数据绑定(bind)来检索索引?

初始MvxListview是使用以下布局从远程服务器生成的

<?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/Flashcards.Android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <Mvx.MvxListview
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       local:MvxBind="ItemsSource TableData;ItemClick NavigateToItemCommand"
       local:MvxItemTemplate="@layout/stackstable_item" />
</LinearLayout>

这是导航命令。
//Defined in Constructor
m_navigateToItemCommand = new MvxCommand(NavigateToItem);
...

public ICommand NavigateToItemCommand
{
    get { return m_navigateToItemCommand; }
}
void NavigateToItem()
{
    //TODO Retrieve ListView Index, Pass Index to new ViewModel.
    ShowViewModel<StacksTableItemViewModel>(new
    {
    SelectedStackIndex = 0;
    });
}

非常感谢您的帮助。谢谢

最佳答案

除了使用MvxCommand之外,您还可以在MvxCommand<T>上将ItemClickMvxListView一起使用

这将使您将物品退回:

    private Cirrious.MvvmCross.ViewModels.MvxCommand<StacksTableItem> _itemSelectedCommand;
    public System.Windows.Input.ICommand ItemSelectedCommand
    {
        get
        {
            _itemSelectedCommand = _itemSelectedCommand ?? new Cirrious.MvvmCross.ViewModels.MvxCommand<StacksTableItem>(DoSelectItem);
            return _itemSelectedCommand;
        }
    }

    private void DoSelectItem(StacksTableItem item)
    {
        ShowViewModel<StacksTableItemViewModel>(new { id = item.Id });
    }

如果有帮助,https://github.com/slodge/MvvmCross-Tutorials/中有一些示例-例如inside Daily Dilbert ListViewModel.cs

09-30 20:01