Hi,
I am trying to bind dictionary object to ListBoxControl as shown below
<telerik:RadListBox ItemsSource="{Binding Path=BooksAvailable}" Height="270">
<telerik:RadListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<CheckBox IsChecked="{Binding Path=Value}"
Width="20" />
<TextBlock Text="{Binding Path=Key}"
Width="100" />
</StackPanel>
</DataTemplate>
</telerik:RadListBox.ItemTemplate>
</telerik:RadListBox>
I want to do two way binding of the values so that if user unchecked I have to update internal Boolean value property.But it is giving exception two way binding can't be possible with dictionary value.
Please help to resolve this.
Regards,
Nagasree.