C#获取系统字体使用的方法:
InstalledFontCollection MyFont = new InstalledFontCollection();
但是当上面的命令出错的时候,可以试试下面这种:
System.Drawing.Text.InstalledFontCollection MyFont = new System.Drawing.Text.InstalledFontCollection();
2022-09-13 15:02:56
C#获取系统字体使用的方法:
InstalledFontCollection MyFont = new InstalledFontCollection();
但是当上面的命令出错的时候,可以试试下面这种:
System.Drawing.Text.InstalledFontCollection MyFont = new System.Drawing.Text.InstalledFontCollection();