可以使用自定义字体更改 C# 中标签的字体。例如:我需要将字体更改为Bookman Old Style,而在 Visual Studio 中没有这种字体。
可以加吗?如何?
可以使用自定义字体更改 C# 中标签的字体。例如:我需要将字体更改为Bookman Old Style,而在 Visual Studio 中没有这种字体。
可以加吗?如何?
使用PrivateFontCollection加载字体(参见AddFontFile
和AddMemoryFont
)。然后,您通常将字体用于标签控制。
PrivateFontCollection pfc = new PrivateFontCollection();
pfc.AddFontFile("C:\\Path To\\YourFont.ttf");
label1.Font = new Font(pfc.Families[0], 16, FontStyle.Regular);