How to read this little piece of XML?

bla001

New Member
I keep gettings stuck on the this XML file. I have 12 TextBlocks in my XAML, and I'd like to put every node in the corresponding TextBlock\[code\]<Producten> <Tariefeenheden>52</Tariefeenheden> <Product naam="Enkele reis"> <Prijs korting="vol tarief" klasse="2">9.00</Prijs> <Prijs korting="reductie_20" klasse="2">7.20</Prijs> <Prijs korting="reductie_40" klasse="2">5.40</Prijs> <Prijs korting="vol tarief" klasse="1">15.30</Prijs> <Prijs korting="reductie_20" klasse="1">12.20</Prijs> <Prijs korting="reductie_40" klasse="1">9.20</Prijs> </Product> <Product naam="Dagretour"> <Prijs korting="vol tarief" klasse="2">18.00</Prijs> <Prijs korting="reductie_20" klasse="2">14.40</Prijs> <Prijs korting="reductie_40" klasse="2">10.80</Prijs> <Prijs korting="vol tarief" klasse="1">30.60</Prijs> <Prijs korting="reductie_20" klasse="1">24.40</Prijs> <Prijs korting="reductie_40" klasse="1">18.40</Prijs> </Product></Producten>\[/code\]How can I achieve this?Kind regards,NielsEDIT: I'd like to get the value of .. So, for example "9.00", "7,20", etc.
 
Back
Top