是否可以查询WebBrowser控件水平滚动条是否可见?

发布于 2025-01-02 01:15:45 字数 1036 浏览 0 评论 0原文

使用 WebBrowser 控件< /a> 在我的 Windows 窗体应用程序中,我想检索当前是否显示水平滚动条的信息。

例如,我想创建一个函数/属性,我们将其称为“HasHorzontalScrollbar”,它返回 truefalse

在此处输入图像描述

我尝试使用 Spy++ 检查窗口,并尝试从窗口读取大小,如下所示,但我我仍然无法获取有意义的值:

var height1 = webBrowser1.Document.Window.Size.Height;
var height2 = webBrowser1.Height;

我的问题是:

有没有办法查询WebBrowser水平滚动条当前是否可见?

编辑:已解决

感谢 Yahia 的帮助,我能够开发一个解决方案

public bool HasHorizontalScrollbar
{
    get
    {
        var width1 = webBrowser.Document.Body.ScrollRectangle.Width;
        var width2 = webBrowser.Document.Window.Size.Width;

        return width1 > width2;
    }
}

:在我的测试环境中工作。

Using a WebBrowser control in my Windows Forms application, I want to retrieve the information, whether a horizontal scrollbar is currently being shown.

E.g. I want to create a function/property, let's call it "HasHorzontalScrollbar", that either returns true or false:

enter image description here

I've tried to use Spy++ to inspect the window and I tried to read the size from the window similar the following, but I'm still unable to get meaningful values:

var height1 = webBrowser1.Document.Window.Size.Height;
var height2 = webBrowser1.Height;

My question is:

Is there a way to query the WebBrowser whether the horizontal scrollbar is currently visible?

Edit: Solved

Thanks to the help from Yahia, I was able to develop a solution:

public bool HasHorizontalScrollbar
{
    get
    {
        var width1 = webBrowser.Document.Body.ScrollRectangle.Width;
        var width2 = webBrowser.Document.Window.Size.Width;

        return width1 > width2;
    }
}

This works in my test environment.

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

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

发布评论

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

评论(1

拥抱我好吗 2025-01-09 01:15:45

尝试

var height = webBrowser1.Document.Body.ScrollRectangle.Height;

参阅 MSDN

try

var height = webBrowser1.Document.Body.ScrollRectangle.Height;

see MSDN.

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