Binding XML in Sliverlight without Nominal Classes
- by AnthonyWJones
Lets say I have a simple chunck of XML:-
<root>
<item forename="Fred" surname="Flintstone" />
<item forename="Barney" surname="Rubble" />
</root>
Having fetched this XML in Silverlight I would like to bind it with xaml of this ilke:-
<ListBox x:Name="ItemList" Style="{StaticResource Items}">
…