Hi!
I need to configure textBlock wrapping in a custom style for GridViewCell in GridViewDataColumn. How to do this?
Style:
<Style x:Key="GridViewCellWrapping" TargetType="TextBlock">
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
Use style:
<telerik:RadTreeListView.Columns>
<telerik:GridViewDataColumn Width="*" CellStyle="{StaticResource GridViewCellWrapping}"
Header="{x:Static strRes:Resources.txtSpecification}" DataMemberBinding="{Binding Description}"/>
</telerik:RadTreeListView.Columns>
And it doesn't work.