如何在 C# 中访问网页浏览器控件的滚动条?

发布于 2024-11-28 05:52:29 字数 159 浏览 2 评论 0原文

我的网络浏览器控件必须被禁用(启用= 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 技术交流群。

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

发布评论

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

评论(1

双手揣兜 2024-12-05 05:52:29

嗯,我不知道是否有任何方法可以以编程方式访问滚动条位置。但是,您可以按元素名称滚动:< /a>

        private void ScrollToElement(String elemName)
    {
        if (webBrowser1.Document != null)
        {
            HtmlDocument doc = webBrowser1.Document;
            HtmlElementCollection elems = doc.All.GetElementsByName(elemName);
            if (elems != null && elems.Count > 0) 
            {
                HtmlElement elem = elems[0];

                elem.ScrollIntoView(true);
            }
        }
    }

另请参阅 这个问题有其他可能性。

编辑:

参见问题以编程方式滚动WebBrowser有时不起作用

Hmm I don't know if there is any method to acccess the scrollbar position programmaticly. You can however, scroll by element name:

        private void ScrollToElement(String elemName)
    {
        if (webBrowser1.Document != null)
        {
            HtmlDocument doc = webBrowser1.Document;
            HtmlElementCollection elems = doc.All.GetElementsByName(elemName);
            if (elems != null && elems.Count > 0) 
            {
                HtmlElement elem = elems[0];

                elem.ScrollIntoView(true);
            }
        }
    }

Also, see this question for other possibilities.

EDIT:

See question Scrolling WebBrowser programatically sometimes doesn't work

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