<sdk:DataGrid x:Name="AccountsDG" ItemsSource="{Binding Data, ElementName=AccountsDDS}"/>
The above works and data show up as expected:
Apple red
Banana yellow
I don't want all the columns shown in the datagrid, so I tried this:
<sdk:DataGrid x:Name="AccountsDG" ItemsSource="{Binding Data.FruitName, ElementName=AccountsDDS}"/>
However, instead of getting:
Apple
Banana
I got:
Char
A
p
p
l
e