Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我似乎无法在普通 Windows 窗体中以编程方式在 WPF 中滚动我会使用下面的代码,但 WPF 中不存在该属性。
HtmlDocument doc = this.webBrowser1.Document; doc.Body.ScrollTop = 800; return;
有没有其他方法可以做到这一点?
不确定要在该代码中查找什么,但我基本上有一个 WebControl,它显示一个包含几篇文章的网页。我想按标题跳转到一篇文章。我知道我可以获取文章名称的索引,但跳转到它是问题所在。
这个怎么样?
if (wb.Document is mshtml.HTMLDocument htmlDoc) { htmlDoc.parentWindow.scrollTo(0, 0); }