WPF Web 浏览器内容大小
我查看了所有相关问题,但无法得到答案。
如何获取 WPF 中 WebBrowser 控件的当前内容大小?
I reviewed all of the related questions but was unable to get an answer.
How do I get the current content size of the WebBrowser control in WPF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要确定浏览器窗口的实际大小(使用 javascript),请使用以下属性:
在 Internet Explorer 中(向后兼容模式):
在 Internet Explorer 中(标准模式,document.compatMode=='CSS1Compat'):
在大多数其他浏览器中:
在您的浏览器中,此代码会产生以下输出:
注意:
To determine the actual size(using javascript) of the browser window, use the following properties:
in Internet Explorer (backward-compatibility mode):
in Internet Explorer (standards mode, document.compatMode=='CSS1Compat'):
in most other browsers:
In your browser, this code produces the following output:
Notes: