HI Telerik,
Is There any control or way available to show Text in Text Block as "
This is text..." if text which is binding is bigger than width if TextBlock.
I have implemented the same one but it works for small text with following way..
while (textBlockElement.ActualWidth > maxWidth && truncateText.Length > 0)
{
truncateText = truncateText.Substring(0, truncateText.Length - 1);
textBlockElement.Text = truncateText +
"...";
}
in
TextBlock_SizeChanged Event..
Please let me know ur team have other solution ..
Thanks In Advance..
Thanks,
Ganesh