Webkit.net 以编程方式滚动文档

发布于 2024-11-08 23:10:59 字数 125 浏览 0 评论 0原文

如果我每次设置 DocumentTextWebkit.Net 在我的 winforms 应用程序中显示 HTML > 属性,文档滚动回到开头。

更改文档文本后如何获取当前滚动位置并设置它?

if I use Webkit.Net to display HTML in my winforms application everytime I set the DocumentText property, the document is scrolled back to the beginning.

How can I get the current scroll position and set it after I changed the document text?

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

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

发布评论

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

评论(1

罪歌 2024-11-15 23:10:59

好吧,看来我忽略了 ScrollOffset 属性:)。

我想补充一点,更新 DocumentText 属性后直接设置它是不够的,因为 webkit 异步加载文档。因此,我必须拦截 DocumentCompleted 事件,例如:

Point p;

void UpdateDocument() {
  p=webkitBrowser.ScrollOffset;
  webkitBrowser.DocumentText = CreateNewDocument();
}

private void webKitBrowser_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) {
  webkitBrowser.ScrollOffset = p;
}

这按我的需要工作。

不管怎样,谢谢。

Ok, it seems that I've overlooked the ScrollOffset property :).

I'd like to add that it is not sufficient to set it directly after updating the DocumentText property since webkit loads the document asyncronously. Therefore I have to intercept the DocumentCompleted event like:

Point p;

void UpdateDocument() {
  p=webkitBrowser.ScrollOffset;
  webkitBrowser.DocumentText = CreateNewDocument();
}

private void webKitBrowser_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) {
  webkitBrowser.ScrollOffset = p;
}

This works as I needed.

Thanks anyway.

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