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.

link|improve this question

67% accept rate
It appears that you have duplicate x:Name and than should be then. You might try binding the second CompboBox to the Element main ComboBox with a Path of SelecteItem.SubPartID. – Blam Dec 16 '11 at 15:42
Updated combobox name. Could you provide a piece of code? I understand the idea but cannot write it. – Werolik Dec 16 '11 at 16:09
Search on binding to an element. If it is an XML parsing problem then it is going to be hard to debug. – Blam Dec 16 '11 at 16:49
Are you using WPF or SL? – user572559 Dec 16 '11 at 16:50
I use WPF and C#. – Werolik Dec 16 '11 at 16:56
feedback

1 Answer

try

ItemsSource="{Binding Source={StaticResource xmlPartList}, 
                      RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window},
                      XPath=./Part/SubParts}"
link|improve this answer
I got Crash. Something wrong with XAML parsing. – Werolik Dec 16 '11 at 16:11
What you gave looks like a SL syntax. In WPF is'll be: AncestorType={x:Type Window}} – user572559 Dec 16 '11 at 16:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.