如何将字符串长度转换为像素单位?
我有一个像这样的字符串:
string s = "This is my string";
我正在创建一个 Telerik 报告,我需要定义一个文本框,它是我的字符串的宽度。 但是,大小属性需要设置为单位(像素、点、英寸等)。 如何将字符串长度转换为像素,以便设置宽度?
编辑:我尝试获取对图形对象的引用,但这是在继承自Telerik.Reporting.Report
的类中完成的。
I have a string like this:
string s = "This is my string";
I am creating a Telerik report and I need to define a textbox
that is the width of my string. However the size property needs to be set to a Unit (Pixel, Point, Inch, etc). How can I convert my string length into, say a Pixel so I can set the width?
EDIT: I have tried getting a reference to the graphics object, but this is done in a class that inherits from Telerik.Reporting.Report
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
也取决于字体。 字符串长度不够。
Depends on the font, too. String length isn't sufficient.
您可以使用
MeasureString()
方法创建图形对象的实例。 但您需要向其传递字体名称、字体大小和其他信息。You can create an instance of a graphics object an use the
MeasureString()
method. But you will need to pass it the font name, font size, and other info.我编写了三个相同的函数,如下所示。 仅更改签名即可使所有功能以相同的名称和谐相处。 我将它们放在一个名为“StringExtensions”的类中,并将每个函数声明为“共享”,以便外部编码可以访问它们,而无需创建该类的实例变量。
只需使用您想要的任何一个(或为具有“文本”属性的其他控件编写更多内容)。
I wrote three identical functions as shown below. Only the signatures are changed to enable all functions to live in harmony with the same name. I placed them in a Class called "StringExtensions" and declared each function as "Shared" so external coding could access them without creating an instance variable of the class.
Just use whichever one you want (or write more for other controls which have a "text" property).
不使用控件或表单:
或者在 VB.Net 中:
Without using of a control or form:
Or in VB.Net:
在这种情况下,我通常使用一种肮脏但简单的方法:
Label
,其AutoSize
属性为true
-肮脏的工作-。Label
的Width
将为我提供正确的值。In this case, I usually use a dirty, but simple way:
Label
that itsAutoSize
property istrue
-dirty work-.Width
for a specific string, I set it to theLabel.Text
.Width
of theLabel
will give me the correct value.