怎么做?
答案 0 :(得分:3)
WPF的正确方法:
使用mshtml; //引用COM对象“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);
}
其他信息 - http://msdn.microsoft.com/en-us/library/ms533049(VS.85).aspx
答案 1 :(得分:2)
public IHTMLDocument2 Document
{
get
{
return webBrowser.Document as IHTMLDocument2;
}
}
...
Document.execCommand("FontSize", false, doubleValue.ToString())
这个帮助