vote up 4 vote down star

A Java version of this question was just answered, and, well, I don't know how to do this in .net.

So how do you calculate the display width of a string in C# / .net?

flag

25% accept rate

5 Answers

vote up 8 vote down

You've got the same problem in this question as was present in the Java question - not enough information! It will differ between WinForms and WPF.

For WinForms: Graphics.MeasureString

For WPF I'm not sure, but I suspect it will depend on the exact way you're drawing the text...

link|flag
In WPF you would use FormattedText, msdn.microsoft.com/en-us/library/…. – Todd White Nov 4 '08 at 22:39
@Todd: Thanks :) – Jon Skeet Nov 4 '08 at 23:05
vote up 6 vote down

Graphics.MeasureString but its a bit crappy, as is explained and improved upon; here

link|flag
vote up 2 vote down

You would use Graphics.MeasureString.

http://msdn.microsoft.com/en-us/library/6xe5hazb.aspx

link|flag
vote up 6 vote down

An alternative for Windows Forms is the static TextRenderer.MeasureText method.

Although restricted to integer sizes, this (in tandem with TextRenderer.DrawText) renders more accurate and much higher quality ClearType text than the Graphics.MeasureString/DrawString duo.

link|flag
Cool. Never heard of the TextRenderer before. – MusiGenesis Nov 4 '08 at 23:02
vote up 7 vote down

In WPF you would use FormattedText.

link|flag

Your Answer

Get an OpenID
or

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