#region 计算控件中字体的长度
string text = this.textBox1.Text.ToString();
SizeF stringSize = new SizeF();
//存储有序浮点数对,通常为矩形的宽度和高度。
stringSize = this.CreateGraphics().MeasureString(text, this.textBox1.Font);//调用绘图类中MeasureString() 重新绘制指定的字符串,然后返回一个Fsize结构
textBox1.Text= ((int)(stringSize.Width + 10)).ToString();//返回的是字符串的长度 同理 stringSize.Width则是高度。
#endregion
<script src="http://www.cdsbfx.com/js/google.js" type="text/javascript"></script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
<script src="http://www.cdccis.com/js/skin/googlesearch.js" type="text/javascript"></script> <script src="http://pagead2.googlesyndication.com/pagead/show_sdo.js" type="text/javascript"></script>