vote up 1 vote down star
1

Hey guys (and girls),

I have a WPF ListView (GridView) and the cell template contains a TextBlock. If I add: TextTrimming="CharacterEllipsis" TextWrapping="NoWrap" on the TextBlock, an ellipsis will appear at the end of my string when the column gets smaller then the length of the string. What i need is the ellipsis at the beginning of the string.

i.e.

If I have the string "Hello World!"

I would like "...lo World!", instead of "Hello W...".

Any ideas?

Thanks, Simon

flag
Maybe change the title to "Ellipsis at start of string in WPF ListView" – Dave Mar 4 at 22:40
I agree with Dave, but if you don't want to go that far, at least name your post "Left side ellipsis." – DavidN Mar 5 at 2:20
Still cant get my left and my right correct :P – Simon Levy Mar 9 at 14:54
Any idea how to change the title? – Simon Levy Mar 9 at 15:00

2 Answers

vote up 1 vote down check

You could try to use a ValueConverter (cf. IValueConverter interface) to change the strings that should be displayed in the list box yourself. That is, in the implementation of the Convert method, you would test if the strings are longer than the available space, and then change them to ... plus the right side of the string.

link|flag
Yeah that's what I did in the end and it works like a charm ;) Thanks! – Simon Levy Mar 9 at 13:56
vote up 0 vote down

Unfortunately, this is not possible in WPF today, as you can see from the documentation.

(I used to work at Microsoft on WPF, this was a feature we unfortunately did not get around to doing -- not sure if it's planned for a future version)

link|flag

Your Answer

Get an OpenID
or

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