1

当我在 Tutorial.Core 中更改 MainMenuViewModel 以使用这样的字典时:

`公共字典项目{得到; 放; } public ICommand ShowItemCommand { get { return new MvxRelayCommand>((type) => DoShowItem(type.Value)); } }

public void DoShowItem(Type itemType)
{
    this.RequestNavigate(itemType);
}

public MainMenuViewModel()
{
    Items = new Dictionary<string, Type>()
                {
                    {"SimpleTextProperty",  typeof(Lessons.SimpleTextPropertyViewModel)},
                    {"PullToRefresh",  typeof(Lessons.PullToRefreshViewModel)},
                    {"Tip",  typeof(Lessons.TipViewModel)},
                    {"Composite",typeof(Lessons.CompositeViewModel)},
                    {"Location",typeof(Lessons.LocationViewModel)}
                };
}`

该示例在 wp7 中按预期工作,但是对于 monodroid 我收到一个错误::"MvxBind:Error: 2,71 Problem seen during binding execution for from Items to ItemsSource - 问题 ArgumentException: failed to convert parameters" 因为我认为 KeyValuePair Key属性导致问题:

<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:local="http://schemas.android.com/apk/res/Tutorial.UI.Droid"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
          android:layout_margin="12dp"
        android:orientation="vertical">
<TextView
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:text="View Model:"
        />
  <TextView
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:textAppearance="?android:attr/textAppearanceLarge"
          local:MvxBind="{'Text':{'Path':'Key'}}"
        />
</LinearLayout>

在此先感谢您的帮助。

4

1 回答 1

2

问题是 mvxbindablelistview 需要一个支持 IList 接口的对象 - 因此它当前无法绑定到字典。

这就是 'ArgumentException: failed to convert parameters' 告诉我们的。


如果要使用字典,则可以应用将字典映射到 List() 的转换器


如果您认为这是 mvx 中缺少的功能 - 如果您认为列表应该绑定到任何 ienumerable(或者可能绑定到任何 icollection),那么请在 github 上记录这是一个问题。


更新- 这已在https://github.com/slodge/MvvmCross/issues/38上进行- 现在行为已更改。

于 2012-10-15T17:02:06.687 回答