C#获取系统字体使用的方法:
InstalledFontCollection MyFont = new InstalledFontCollection();
但是当上面的命令出错的时候,可以试试下面这种:
System.Drawing.Text.InstalledFontCollection MyFont = new System.Drawing.Text.InstalledFontCollection();
原文地址:https://www.cnblogs.com/kuangzhenxia-416/p/11728928.html
时间: 2024-11-06 09:40:39