我有一个像这样的字符串:
string s = "This is my string";
我正在创建一个Telerik报告,我需要定义一个
textbox
,它是我字符串的宽度。但是,大小属性需要设置为单位(像素,点,英寸等)。如何将字符串长度转换为像素,以便可以设置宽度?编辑:我尝试获取对图形对象的引用,但这是在从
Telerik.Reporting.Report
继承的类中完成的。 最佳答案
不使用控件或形式:
using (System.Drawing.Graphics graphics = System.Drawing.Graphics.FromImage(new Bitmap(1, 1)))
{
SizeF size = graphics.MeasureString("Hello there", new Font("Segoe UI", 11, FontStyle.Regular, GraphicsUnit.Point));
}
或在VB.Net中:
Using graphics As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(New Bitmap(1, 1))
Dim size As SizeF = graphics.MeasureString("Hello there", New Font("Segoe UI", 11, FontStyle.Regular, GraphicsUnit.Point))
End Using
关于c# - 如何将字符串长度转换为像素单位?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/451903/