Skip to main content
added 119 characters in body
Source Link
Swim
  • 1.6k
  • 1
  • 13
  • 18

SometimeSometimes you get string that is too long to show on label in that. In this case we can make use of TextTrimming property of TextBlock to show Ellipses

<TextBlock Name="sampleTextBlock" TextTrimming="WordEllipsis" TextWrapping="NoWrap"/> 

MSDN Link

Sometime you get string that is too long to show on label in that case we can make use of TextTrimming property of TextBlock to show Ellipses

MSDN Link

Sometimes you get string that is too long to show on label. In this case we can make use of TextTrimming property of TextBlock to show Ellipses

<TextBlock Name="sampleTextBlock" TextTrimming="WordEllipsis" TextWrapping="NoWrap"/> 

MSDN Link

Post Made Community Wiki by Marc Gravell
Source Link
Prashant Cholachagudda
  • 13.1k
  • 24
  • 100
  • 163

Sometime you get string that is too long to show on label in that case we can make use of TextTrimming property of TextBlock to show Ellipses

MSDN Link