GeckoFX WebBrowser 页面高度和宽度
有谁知道如何在 GeckoFX 中获取整个页面的高度和宽度? 在 IE WebBrowser 对象中,我可以查看 WebBrowser.Document.Body.ScrollRectangle。 (这里的目的是截取整个页面的屏幕截图)
谢谢!
Does anyone know how I get the full page height and width in GeckoFX?
In the IE WebBrowser object, I can look at WebBrowser.Document.Body.ScrollRectangle.
(The objective here is to take a screenshot of the entire page)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在使用 GeckoFX 的 Hindle's fork,具体操作方法如下:
我用它来创建以下内容的缩略图页面。请注意,这为我们提供了导航到的第一个页面所占用的大小,而不一定是当前页面的大小。我通过为缩略图的每个页面使用不同的浏览器实例来解决这个问题。
I'm using Hindle's fork of GeckoFX, and here's how I do it:
I use this to create thumbnails of the page. Note, this gives us the size taken up by the first page we navigated to, not necessarily the size of the current page. I get around that by using different browser instances for each page I'm thumbnailing.
我这样做了:
它似乎有效。
安装的 Visual Studio:Community 2019
GeckoFx 安装的:v45.0.34(带有 NuGet 包管理器)
I did this:
It seems working.
Visual Studio installed: Community 2019
GeckoFx installed: v45.0.34 (with NuGet package manager)