解决方法
我想你可以通过它的Document属性获取webbrowser组件内容的宽度和高度,该属性应该是mshtml.HTMLDocument类型.我相信你应该能够使用body或documentElement属性来获取所需的大小;这样的smth:
mshtml.HTMLDocument htmlDoc = webBrowser.Document as mshtml.HTMLDocument; if (htmlDoc != null && htmlDoc.body != null) { mshtml.IHTMLElement2 body = (mshtml.IHTMLElement2)htmlDoc.body; webBrowser.Width = body.scrollWidth; webBrowser.Height = body.scrollHeight; }
希望这有帮助,问候