如何包含字体以单击安装后
有没有什么方法可以将字体包含到 Visual Studio 中 winforms 应用程序的 clickOnce 安装中。我们正在开发的程序需要一种 Windows 中默认未安装的字体。
Is there any way to include font to a clickOnce installation of a winforms application in visual studio. The program that we are developing requires a font that is not installed in windows by default.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于将来遇到此问题的任何人:有一个类似的主题,其中包含有关此问题的更多最新且更详细的答案 - 在 .NET 应用程序中嵌入/部署自定义字体
For anyone who stumbles on this in the future: There is a similar topic with more up-to-date and more detailed answers regarding this issue- Embedding/deploying custom font in .NET app
你能创建一个设置吗?部署项目来安装字体,并将其作为 ClickOnce 应用程序的先决条件进行部署。您可以使用 Bootstrapper Manifest Generator 创建先决条件包,将其转换为自定义先决条件,将其复制到 VS 包文件夹中,它将作为先决条件显示在 Visual Studio 中。
Can you create a setup & deployment project to install the font, and deploy it as a prerequisite to the ClickOnce application. You can turn it into a custom prerequisite by using the Bootstrapper Manifest Generator to create the prerequisite package, copy into the VS packages folder, and it will show up in Visual Studio as a prerequisite.
您可以将字体加载到 res 文件中并加载它,而无需将其安装到计算机上。
请参阅:
You can load the font into a res file and have it loaded without being installed to the computer.
See: