I would like to trim the contents of a TextBlock at the bottom of the container when it runs out of space. The image below shows what I am trying to achieve.

Example of desired effect

The left cell contains text that is being wrapped at the end of the line, but is being cropped on the final line. The right cell (which I edited by hand) shows the effect I want to achieve by trimming the text on the last line.

Is there an (easy) way to achieve this in WPF?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Did you try the TextTrimming property?

link|improve this answer
Yes I had, and it didn't work, but it turns out the text was inside a scrollviewer so it wasn't trimming. Moved the TextBlock into a grid and it works great. Sorry for the dumb question. – Darren Feb 12 '11 at 11:55
There are no dumb questions, just dumb answers ;-) – Erno Feb 12 '11 at 11:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.