I have a problem similar to this and this. Here is a description:
I have a following XML:
<Parts>
<Part id="1" name="part1">
<SubParts>
<SubPart id="1" name="sub_part1"/>
<SubPart id="2" name="sub_part2"/>
</SubParts>
</Part>
...
</Parts>
Sure, I want to have two dependent ComboBox items in my WPF control - one for parts and one for subparts.
The difference from the solution above is that I don't want to replace the DataContext of the second ComboBox because than I loose the parent DataContext binding.
I want to get something like this:
<ComboBox x:Name="_partCombo" ItemsSource="{Binding Source={StaticResource xmlPartList}, XPath=./Part}"
...
SelectedValue="{Binding PartID}"/>
<ComboBox x:Name="_subPartCombo" ItemsSource="{Binding Source={StaticResource xmlPartList}, XPath=./Part/SubParts}"
...
SelectedValue="{Binding SubPartID}"/>
I tried using intermediate data member to bind the selected item from first ComboBox but I cannot bind to it from the second one.
Any help required.