I am doing the following simple code just to test my ReadOnlyList Object.
<ItemsControl ItemsSource="{Binding Source={StaticResource reportData}, Path=Data}" Canvas.Top="300">
<TextBlock Text="{Binding Description}" FontSize="20" /> </ItemsControl>I haven't used ItemsControl, but I suspect it is like ListBox? With ListBox you need to provide a data template that describes how each item in the list is rendered, and I'm guessing ItemsControl works in a similar manner?
It sure sounds like it is currently just rendering the ToString() value for each item in the collection, which is what you'd get with a ListBox that didn't have a data template.
Copyright (c) Marimer LLC