i search fot the correct way to bind a TextBlock in the sdk:DataGridCell Template; the way like in WPF - Text={Binding} doesn't work.
<Style TargetType="sdk:DataGridCell">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ContentControl">
<Grid>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="MouseOver">
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Border Background="{x:Null}">
<TextBlock Text="{Binding}" Foreground="Black"/>
</Border>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
Also Text="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Content.Text}" doesn't work.
Any other ideas? Thanks a lot.