使用Wpf滚动到Web浏览器中的某个位置

时间:2008-10-26 23:29:45

标签: wpf indexing browser scroll position

我似乎无法在WPF中以程序方式滚动 在正常的Windows窗体中,我会使用下面的代码 但该属性在WPF中不存在。

HtmlDocument doc = this.webBrowser1.Document;
doc.Body.ScrollTop = 800;
return; 

有替代方法吗?

2 个答案:

答案 0 :(得分:1)

不确定该代码中要查找的内容,但我基本上有一个WebControl,显示一个包含多篇文章的网页。 我想通过它的标题跳到一篇文章。我知道我可以获得文章名称的索引,但跳到它是问题。

答案 1 :(得分:0)

这个怎么样?

if (wb.Document is mshtml.HTMLDocument htmlDoc)
{
    htmlDoc.parentWindow.scrollTo(0, 0);
}