Hi,
I'm trying to get the Text to get wrapped in a Datagrid.
I've set up a Style:
<Style x:Key="wrappingText" TargetType="syncfusion:GridCell">
<Setter Property="TextBlock.TextWrapping" Value="Wrap"/>
<Setter Property="Background" Value="Aqua"/>
</Style>
and applied to in c#
if(e.Column is GridTextColumn)
{
e.Column.CellStyle = App.Current.Resources["wrappingText"] as Style;
}
The Background changed, but the wrapping fails.
Thanks in advance
Timo