I'm using the Lightweight Datatable with
Datatyp of the Cells is as CutsomObject with Properties like:
Value, Align Bolt
No i like to set a DataTemplate... but it seems to by useless, the Binding is not on the Value, it shwos in every Cell the ObjectType
AutoGenerateColumns
="True"
Datatyp of the Cells is as CutsomObject with Properties like:
Value, Align Bolt
No i like to set a DataTemplate... but it seems to by useless, the Binding is not on the Value, it shwos in every Cell the ObjectType
<
tg:RadGridView
x:Name
=
"TestGrid"
Grid.Row
=
"2"
Style
=
"{StaticResource DataGridStyle}"
AutoGenerateColumns
=
"True"
ItemsSource
=
"{Binding ResultSet, Mode=TwoWay}"
>
<
tg:RadGridView.ItemTemplate
>
<
DataTemplate
>
<
TextBlock
Text
=
"{Binding Value}"
></
TextBlock
>
</
DataTemplate
>
</
tg:RadGridView.ItemTemplate
>
</
tg:RadGridView
>