0

我正在尝试使用 CheckBoxes 实现 List,但是在将 Dictionary 的值绑定到IsCheckedXAML 中的属性时遇到了一些问题。

我的列表模板:

XAML

<ItemsControl Name="lb" ItemsSource="{Binding Movies}" BorderThickness="0">
    <ItemsControl.Style>
        <Style TargetType="ItemsControl">
            <Setter Property="ItemsPanel">
                <Setter.Value>
                    <ItemsPanelTemplate>
                        <StackPanel Orientation="Horizontal"/>
                    </ItemsPanelTemplate>
                </Setter.Value>
            </Setter>
        </Style>
    </ItemsControl.Style>

    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <Grid>
                <CheckBox Content="{Binding Key.MovieId}" IsChecked="{Binding Converter={StaticResource DictConvert}, ConverterParameter=Key}" Command="{Binding DummyCommand}"/>
            </Grid>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

转换器

public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
    KeyValuePair<Movie, bool> bla = (KeyValuePair<Movie, bool>)value;
    var dict = value as Dictionary<Movie, bool>;
    List<KeyValuePair<Movie,bool>> list = new List<KeyValuePair<Movie, bool>>();
    list.Add(bla);
    dict = list.ToDictionary(k => k.Key, k => k.Value);

    if (dict != null)
    {
        return true;
    }

    throw new NotImplementedException();
}

调试器点击了这个“return true”行,所以它应该可以工作,但我得到XamlParseException. 任何人都可以帮助我吗?,我试图创建 ObservableDictionary 但放弃了 - 这是唯一的方法吗?

4

1 回答 1

1

我认为您不能ConverterParameter像尝试那样设置数据绑定值(语法也不正确)。将您的转换器重做为 a IMultiValueConverter,并将 Key 和 Value 作为单独的绑定传递,您应该一切顺利。

此外,删除throw new NotImplementedException()代码中的行 - 这将使其崩溃。

于 2013-04-11T15:45:53.660 回答