C# 中 VB6 的 Label.FontName 的等价物是什么?

发布于 2024-10-21 08:49:03 字数 215 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

油焖大侠 2024-10-28 08:49:03

尝试这样做,例如:

lblTitle.Font = new Font("Arial", 12, FontStyle.Bold);

将标签的字体设置为Arial Bold。在此示例中,字体大小为 12。

Try to do it like this for example:

lblTitle.Font = new Font("Arial", 12, FontStyle.Bold);

To set the font of the label to Arial Bold. In this example with a font size of 12.

回忆追雨的时光 2024-10-28 08:49:03

您需要创建一个新的字体并设置它在构造函数中。然后将新字体设置到控件。

You will need to create a new Font and set that in the constructor. then Set the new font to the control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文