Hello,
I have a ItemTemplate with a Textblock with TextWrapping="Wrap". Since I update Telerik to the last version, the text is wrapping not normaly, it doesn't fill all the width of the Textblock. I don't understand why, is there something that change in the Tile Style that make this happen?
Thanks in advance for your help.
I have a ItemTemplate with a Textblock with TextWrapping="Wrap". Since I update Telerik to the last version, the text is wrapping not normaly, it doesn't fill all the width of the Textblock. I don't understand why, is there something that change in the Tile Style that make this happen?
Thanks in advance for your help.
<
DataTemplate
x:Key
=
"DashAppTileItemTemplate"
>
<
Grid
VerticalAlignment
=
"Top"
>
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"50"
/>
<
RowDefinition
Height
=
"*"
/>
</
Grid.RowDefinitions
>
<
Grid.ColumnDefinitions
>
<
ColumnDefinition
Width
=
"55"
/>
<
ColumnDefinition
Width
=
"*"
/>
</
Grid.ColumnDefinitions
>
<
Image
VerticalAlignment
=
"Center"
Grid.Row
=
"0"
Grid.Column
=
"0"
Source
=
"{Binding Path=Image , Mode=OneWay, TargetNullValue=Category.Image}"
Margin
=
"5,0"
/>
<
TextBlock
VerticalAlignment
=
"Center"
Grid.Row
=
"0"
Grid.Column
=
"1"
Text
=
"{Binding Path=Libelle, Mode=OneWay}"
FontSize
=
"18"
/>
<
TextBlock
Grid.Row
=
"1"
Grid.Column
=
"1"
Text
=
"This is my very long text"
TextWrapping
=
"Wrap"
/>
</
Grid
>
</
DataTemplate
>