VB6 的 Label 控件有一个属性 FontName ,它允许您像这样设置字体: lblTitle.FontName = "Arial Bold" 。 C# 有类似的东西吗?

我正在将一个数据库繁重的程序从 VB6 移植到 C#,我从数据库中获得了诸如“Arial Bold”或“Garamond Italic”之类的字体名称,我应该根据来自数据库。

最佳答案

尝试这样做,例如:

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

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

关于c# - VB6 的 Label.FontName 的 C# 等价物是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5259955/

10-13 09:20