wpf:更改 WebBrowser 控件的字体大小

发布于 2024-07-26 15:49:14 字数 13 浏览 3 评论 0原文

这个怎么做?

How to do this?

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

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

发布评论

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

评论(2

叹梦 2024-08-02 15:49:14

WPF 的正确方法:

使用mshtml; //引用 COM 对象“Microsoft HTML 对象库”

...

var doc = web.Document as HTMLDocument;
if (doc != null)
{
doc.execCommand("SelectAll", false, null);
doc.execCommand("FontSize", false, 5);
doc.execCommand("取消选择", false, null);
}

其他信息 - http://msdn.microsoft.com /en-us/library/ms533049(VS.85).aspx

Right way for WPF:

using mshtml; //reference to COM object "Microsoft HTML Object Library"

...

var doc = web.Document as HTMLDocument;
if (doc != null)
{
doc.execCommand("SelectAll", false, null);
doc.execCommand("FontSize", false, 5);
doc.execCommand("Unselect", false, null);
}

additional information - http://msdn.microsoft.com/en-us/library/ms533049(VS.85).aspx

最冷一天 2024-08-02 15:49:14
 public IHTMLDocument2 Document
 {
     get
     {
           return webBrowser.Document as IHTMLDocument2;
     }
 }
...
Document.execCommand("FontSize", false, doubleValue.ToString())

这应该有帮助

 public IHTMLDocument2 Document
 {
     get
     {
           return webBrowser.Document as IHTMLDocument2;
     }
 }
...
Document.execCommand("FontSize", false, doubleValue.ToString())

This shold help

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