Graphics in C# (.NET)

Posted by RealBoy_Ba on Stack Overflow See other posts from Stack Overflow or by RealBoy_Ba
Published on 2010-03-08T19:35:58Z Indexed on 2010/03/08 19:51 UTC
Read the original article Hit count: 143

Filed under:
|
|

I use this code for drawing text in a panel:

Graphics g = panel1.CreateGraphics();
g.DrawString(...);

So I want to know how many pixels the input text will take in the panel?

© Stack Overflow or respective owner

Related posts about c#

Related posts about graphics