I'd like to know if there's a better approach to this problem. I want to resize a label (vertically) to accomodate certain amount of text. My label has a fixed width (about 60 chars wide before it must wrap), about 495 pixels. The font is also a fixed size (12points afaik), but the text is not.

What I want to do is increase the Label Height when there's a "NewLine" or the text must wrap; the idea is that the text is fully visible in the label. The AutoSize doesn't work because it will grow in width, not in height.

Of course I could count the number of NewLines and add: Newlines * LineHeight, and then -given that I manage to put 60 chars per line, just divide the number of chars and add as many LineHeight pixels as needed.

I was wondering if there was a more professional way to do it. Is my approach too "lame" ?

Thanks in advance.

link|improve this question

feedback

6 Answers

up vote 35 down vote accepted

How about Graphics.MeasureString, with the overload that accepts a string, the font, and the max width? This returns a SizeF, so you can round round-off the Height.

        using(Graphics g = CreateGraphics()) {
            SizeF size = g.MeasureString(text, lbl.Font, 495);
            lbl.Height = (int) Math.Ceiling(size.Height);
            lbl.Text = text;
        }
link|improve this answer
That's what I get for adding detail. – MusiGenesis Dec 23 '08 at 14:24
Thank you, you won MusiGenesis by a few secs :) I wish I could tag both questions as Answer :S – Martín Marconcini Dec 23 '08 at 14:25
Code example FTW! – Quibblesome Dec 23 '08 at 14:28
@Quarrelsome - added, refresh ;-p – Marc Gravell Dec 23 '08 at 14:28
+1 from me, too, but c'mon! Math.Ceiling? Mouse, meet howitzer. :) – MusiGenesis Dec 23 '08 at 14:40
show 2 more comments
feedback

System.Drawing.Graphics has a MeasureString method that you can use for this purpose. Use the overload that takes a string, a font, and an int "width" parameter; this last parameter specifies the maximum width allowed for the string - use the set width of your label for this parameter.

MeasureString returns a SizeF object. Use the Height property of this returned object to set the height of your label.

Note: to get a Graphics object for this purpose, you can call this.CreateGraphics.

link|improve this answer
There we go, +1 for detail :D – Quibblesome Dec 23 '08 at 14:25
Sure thing. :) This is ALSO the answer. I'll respect "Order of Arrival" but I appreciate your detail. Tyvm. – Martín Marconcini Dec 23 '08 at 14:26
To reduce the frustration, +1 from me too ;-p – Marc Gravell Dec 23 '08 at 14:32
Better late than never, another +1 for details. – Eric J. Oct 1 '09 at 21:46
feedback

Graphics.MeasureString() will probably help you.

This is also one of the only usecases for using the Control.CreateGraphics() call!

link|improve this answer
+1 for the +1. :) – MusiGenesis Dec 23 '08 at 14:26
:) Thanks too. All the answers are great. Do i get anything in return for finding "one of the only usercases" ? ;) – Martín Marconcini Dec 23 '08 at 14:28
What is another use case for CreateGraphics? I can't think of any other. – MusiGenesis Dec 23 '08 at 14:28
I said "one of the only" just in case there is another but I think it is the only one. To be honest i'm only parroting Bob Powell's GDI FAQ. – Quibblesome Dec 23 '08 at 15:22
The only other one I can think of is for creating custom graphics that go away when you drag another window over them, but that's more of a mis-use case. :) – MusiGenesis Dec 23 '08 at 16:12
show 2 more comments
feedback

This "answer" is for future reference and to combat the initial assumption that AutoSize = true implies that it (a WinForms label) will never grow in height.

The following link shows the various effects of AutoSize = true with other properties such as MaximumSize. Depending upon the expected use of the question it may be appropriate to follow one of these approaches.

http://blogs.msdn.com/jfoscoding/articles/478299.aspx

link|improve this answer
Cool. Now I know why all the code I ever wrote to resize labels like this never worked quite right. I'd like to go back in time and slap myself, but I'd have trouble picking just one date to go back to. – MusiGenesis Dec 16 '09 at 4:01
feedback

Well the 60 chars might be valid for your test text, but not all characters have the same width. For instance, compare
llllllllllllllllllllllllllllllllllllllllllllllllllllllllllll
and
wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww

They both have 60 characters, and yet have vastly differing widths.

link|improve this answer
OP said it was fixed font, like courier new. – Quibblesome Dec 23 '08 at 14:26
Indeed, but I have a fixed font and measeure string will probably take care of this. Thanks. – Martín Marconcini Dec 23 '08 at 14:27
feedback

Is there any downside to using the TextRenderer class to measure the string (like in Marc's response) instead of going through the work to create a Graphics object, etc?

link|improve this answer
TextRenderer is slower than Graphics.MeasureString. I have no idea why. They're both plenty fast for most use cases, however. – MusiGenesis Oct 2 '09 at 0:55
feedback

Your Answer

 
or
required, but never shown

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