如何在 C# 中访问网页浏览器控件的滚动条?
我的网络浏览器控件必须被禁用(启用= false),以便用户无法单击它。 这也禁用了对滚动条的访问,因此我正在考虑在控件旁边创建另一个滚动条,该控件从网络浏览器的滚动条获取和传递其值。 为此,我需要访问网络浏览器滚动条控件。我怎样才能找到它? webbrowser.Controls.Count 返回零。
My webbrowser control has to be disabled (enabled = false) so that the user can't click in it.
This also disables the access to the scrollbar so I'm thinking about creating another scrollbar next to the control that gets and passes its values from and to the webbrowser's scrollbar.
For that, I need to access the webbrowser scrollbar control. How can I find it ?
webbrowser.Controls.Count returns zero.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我不知道是否有任何方法可以以编程方式访问滚动条位置。但是,您可以按元素名称滚动:< /a>
另请参阅 这个问题有其他可能性。
编辑:
参见问题以编程方式滚动WebBrowser有时不起作用
Hmm I don't know if there is any method to acccess the scrollbar position programmaticly. You can however, scroll by element name:
Also, see this question for other possibilities.
EDIT:
See question Scrolling WebBrowser programatically sometimes doesn't work