vote up 1 vote down star

Does anyone have any suggestions on how to justify read-only text (rendered into a TextBlock) in Silverlight 2? WPF supports text justification by way of the TextAlignment enumeration:

public enum TextAlignment
{
    Left,
    Right,
    Center,
    Justify // <--- Missing from Silverlight :(
}

However, Silverlight 2 only supports the following:

public enum TextAlignment
{
    Center,
    Left,
    Right
}

Any ideas or suggestions gratefully received.

flag
+1 Good question. I've been doing some Silverlight myself but I've not done any major WPF, so I'm unaware of some of these "missing" items (I'm a WinForms guy at the moment). – Jeff Yates Feb 11 at 17:33
Text formatting is crippled in Silverlight as of 2.0. You can't even write your own text layout code because the only way to measure text is to create a TextBlock and measure that, but that doesn't give you all the metrics you need. Hopefully Silverlight 3... – U62 Feb 11 at 17:36
If you've gotta use text, you've gotta use text. No need to justify it to anyone. =o) – Echostorm Feb 11 at 17:52
@Echostorm: Nice. :D – Jeff Yates Feb 11 at 17:55

3 Answers

vote up -1 vote down

If these dont meet your needs, you should write an extender or converter and bind to that instead of using one of the enums.

link|flag
Not sure which enumeration you're referring to, but the values posted in the question are correct .. according to Reflector and looking at the property values in Blend and VS.NET. Could you elaborate please? On the matter of the Extender and Converter ideas, I don't see how a converter will help :S – PaulJ Feb 11 at 17:17
The TextAlignment enums. – Muad'Dib Feb 11 at 18:02
vote up 1 vote down

Off the top of my head, I can think of two not-so-easy ways to do this. One is rather lame; adding spaces between the words. The other would be to somehow parse the text so that each word is it's own text block, you could then use a Grid to left justify the first word of a line and right justify the last word of a line, then space the other blocks in the center cell using a stack panel or similar.

Determining which words are the start and end of a line would involve measuring the rendered size of each block and deciding if it will fit. It's not simple but it should work.

link|flag
Thanks for your answers .. your first approach occurred to me too, however the second one is novel idea and you've given me the idea of potentially using a custom layout panel – PaulJ Feb 11 at 17:36
vote up 0 vote down

I found a blog post about that - http://math-geek-rock-chick.blogspot.com/2008/08/silverlight-and-text-alignjustify.html. The idea is to divide the text into individual lines and then apply a ScaleTransform to each line scaling the text from left (RenderTransformOrigin=0,0) to right (Scale.X = 1.02). But the method is only good for small pieces of text and will probably brake down if your TextBox size is changing.

link|flag
Thanks, I saw that post before asking the question; it felt really fragile as an approach; but thanks for looking :) – PaulJ Feb 11 at 19:19
Well lets hope align: justify in March when Silverlight 3 comes out. Right now scale transform seems like the "easyest" way. – texmex5 Feb 11 at 22:05

Your Answer

Get an OpenID
or

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