使用自定义字体更改标签的字体

时间:2013-04-10 17:04:25

标签: c# winforms visual-studio

可以使用自定义字体更改C#中的标签字体。 EX。:我需要将字体更改为 Bookman Old Style ,并且在Visual Studio中没有此字体。

有可能加吗?怎么样?

1 个答案:

答案 0 :(得分:5)

使用PrivateFontCollection加载字体(请参阅AddFontFileAddMemoryFont)。然后,您可以正常使用该字体进行标签控制。

PrivateFontCollection pfc = new PrivateFontCollection();
pfc.AddFontFile("C:\\Path To\\YourFont.ttf");
label1.Font = new Font(pfc.Families[0], 16, FontStyle.Regular);