3

可以使用自定义字体更改 C# 中标签的字体。例如:我需要将字体更改为Bookman Old Style,而在 Visual Studio 中没有这种字体。

可以加吗?如何?

4

1 回答 1

5

使用PrivateFontCollection加载字体(参见AddFontFileAddMemoryFont)。然后,您通常将字体用于标签控制。

PrivateFontCollection pfc = new PrivateFontCollection();
pfc.AddFontFile("C:\\Path To\\YourFont.ttf");
label1.Font = new Font(pfc.Families[0], 16, FontStyle.Regular);
于 2013-04-10T17:06:47.753 回答