我正在尝试使用 CheckBoxes 实现 List,但是在将 Dictionary 的值绑定到IsChecked
XAML 中的属性时遇到了一些问题。
我的列表模板:
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 但放弃了 - 这是唯一的方法吗?