2020
11-08
11-08
windows系统下,如何在C#程序中自动安装字体
1.1、使用代码安装字体注意:安装字体时,需要windows的管理员权限。[DllImport("kernel32.dll",SetLastError=true)]publicstaticexternintWriteProfileString(stringlpszSection,stringlpszKeyName,stringlpszString);[DllImport("gdi32")]publicstaticexternintAddFontResource(stringlpFileName);///<summary>///安装字体///</summary>///<paramname="fontFilePath">字体文件全路径</param...
继续阅读 >