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.