C# webbrowser 控件 - 我想使用/链接特定字体

发布于 2024-08-15 05:54:46 字数 178 浏览 2 评论 0原文

我正在为著名的 .nfo 文件编写一个简单的文本查看器。 为了简单的布局,我使用 webbrowser 控件来显示 nfo 文件。 我有字体 - 当然是非标准的 - 我想使用。

在我的应用程序中包含/链接字体的最佳方式是什么? 我是否必须将其包含在我的应用程序文件夹中并注册它,或者有没有办法在我的控件中使用未标准安装的字体?

I'm writing a simple textviewer for the famous .nfo files.
For easy layout stuff I'm using the webbrowser control to display the nfo file.
I have font - nonstandard ofcourse - that I'd like to use.

What's the best way to include / link the font in my application ?
Do I have to include it in my application-folder and register it, or is there a way to use a font in my control that's not standard installed ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

゛清羽墨安 2024-08-22 05:54:46

字体不是 Web 控件的一部分。字体来自您使用 Web 控件查看的网页的 HTML。

因此,第一步是制作一个在浏览器中正确显示的示例 HTML 页面(使用您想要的字体),然后您可以稍后将该页面加载到 Web 控件中。

要在 html 页面中加载字体,请参阅:如何在 HTML 中嵌入字体?

完成后,第二步就是动态生成 HTML 页面文本(其中包含字体代码和 NFO),然后将其粘贴到 WebBrowser 控件中。

The fonts are not part of the web control. The fonts come from the HTML of the web page that you're viewing with the web control.

So, the first step is to make a sample HTML page that displays correctly in a browser (with the fonts you want), then you can load that page into the webcontrol later.

To load fonts in the html page, see: How to embed fonts in HTML?

Once you have that, then the second step is to simply generate the HTML page text dynamically (with the font code in it and your NFO) and then stick that into the WebBrowser control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文