3

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

是否有针对此的 Mvvmcross 特定解决方案?是否有数据绑定来检索索引?

初始 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;
    });
}

非常感谢任何帮助。谢谢

4

1 回答 1

2

代替 using MvxCommand,您可以使用MvxCommand<T>with an ItemClickon anMvxListView

这会将您的项目传回:

    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/中有一些这样的例子- 例如在 Daily Dilbert ListViewModel.cs

于 2013-06-14T05:23:37.390 回答