I'm trying to make a series of listboxes that filter the next listbox.
Ex.:
Listbox01: Toyota, Hundai
Listbox02 (Toyota selected): Supra, Corola
Listbox03: (Supra selected): Red, Black
The DataSource is an XML file simnilar to this:
I know how to create the listboxes but can't figure out how to query the XML to get what I want. It has to be done in C# 2.0...
Ex.:
Listbox01: Toyota, Hundai
Listbox02 (Toyota selected): Supra, Corola
Listbox03: (Supra selected): Red, Black
The DataSource is an XML file simnilar to this:
Code:
<items>
<item name="Toyota">
<item name="Supra">
<item name="Red"></item>
<item name="Black"></item>
</item>
<item name="Corola">
<item name="Red"></item>
<item name="Green"></item>
</item>
</item>
<item name="Hundai">
<item name="Elantra">
<item name="Black"></item>
<item name="Blue"></item>
</item>
</item>
</items>
Comment