How to get this XML style into an autogenerated column datagrid ? Can't seem to get it working... (I get column header with "Child" and "innertext" and ... very weard)xml:\[code\] <response> <sms> <recipient></recipient> <message></message> <status></status> </sms> </response>\[/code\]xaml:\[code\] <XmlDataProvider x:Key="LogData" XPath="/response/sms"> </XmlDataProvider> ... <DataGrid ItemsSource="{Binding Source={StaticResource LogData}}" DataContext=" {StaticResource LogData}" AutoGenerateColumns="True" > ...\[/code\]