views:

183

answers:

1

When I try to use the same list with multiple combo boxes, the selection is shared with all the combo boxes.

I want the combo box to treat the datasource as their own and selection should not be shared.

<ComboBox ItemsSource="{Binding ActiveLanguages}" DisplayMemberPath="Name" />

ActiveLanguages is a ObservableCollection and is a single instance object for the application.

This Combo Box is on a template, and the selection repeats itself on all the instance of the templates.

+4  A: 

Set the IsSynchronizedWithCurrentItem property to false

Thomas Levesque
does not work :( From the help docs it looks like you are right but ...
Rohit