GDI+ 取得文本的宽度和高度

string   s=this.textBox1.Text.Trim();  
  float   w=0;  
  float   h=0;  
  Graphics   g=Graphics.FromHwnd(this.Handle);  
  Font   myf=new   Font("宋体",15);  
  StringFormat   sf=new   StringFormat(StringFormat.GenericTypographic);  
    SizeF   size=g.MeasureString(s,myf,1000,sf);  

转载于:https://www.cnblogs.com/sun_moon_earth/archive/2007/02/28/660212.html

你可能感兴趣的:(GDI+ 取得文本的宽度和高度)