C# 中 VB6 的 Label.FontName 的等价物是什么?
VB6 的 Label 控件有一个属性 FontName
,它允许您设置字体,如下所示:lblTitle.FontName = "Arial Bold"
。 C# 有类似的东西吗?
我正在将一个数据库繁重的程序从 VB6 移植到 C#,并且从数据库中获取“Arial Bold”或“Garamond Italic”等字体名称,并且我应该根据来自数据库。
VB6's Label controls have a Property FontName
, which allows you to set the font like this: lblTitle.FontName = "Arial Bold"
. Does C# have something similar?
I'm porting a database heavy program from VB6 to C#, and I get names of fonts like "Arial Bold" or "Garamond Italic" from the database and I'm supposed to set the font of some labels based on that text from the database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样做,例如:
将标签的字体设置为Arial Bold。在此示例中,字体大小为 12。
Try to do it like this for example:
To set the font of the label to Arial Bold. In this example with a font size of 12.
您需要创建一个新的字体并设置它在构造函数中。然后将新字体设置到控件。
You will need to create a new Font and set that in the constructor. then Set the new font to the control.