tabcontrol 与许多 tabPages c#

发布于 2024-08-04 05:31:31 字数 125 浏览 5 评论 0原文

我正在寻找一个函数,它获取输入 tabcontrol 和 tabpage 索引,并且如果 tabPage 标题显示或不显示,则会返回(如果出现额外的页面和滚动条,一些 tabPages 标题可能会消失)。

有人有代码吗?

I'm looking for a function which get for input tabcontrol and tabpage index and will return if the tabPage header is shown or not (in case that there are extra pages and scrollbars appear, some of tabPages headers can be disappeared).

does someone have a code for it?

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

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

发布评论

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

评论(1

↘紸啶 2024-08-11 05:31:31

检查以下代码在 winForms 上是否有效,您可以增加或减少 scrollbarwidth 变量,以适应​​您对显示或不显示页面大小的看法。

 private bool TabPageShown(TabControl tabCtrl, int tabIndex)
        {
             Rectangle rct = tabCtrl.GetTabRect(tabIndex);
             int scrollBarWidth = 24;
             if (rct.X - scrollBarWidth < tabCtrl.Width)
             {
                 return true;
             }
             else
             {
                 return false;
             }
        }

check the following code works on winForms, you can increase or decrease the scrollbarwidth variable to fit your opinion on how much size you will consider the page shown or not.

 private bool TabPageShown(TabControl tabCtrl, int tabIndex)
        {
             Rectangle rct = tabCtrl.GetTabRect(tabIndex);
             int scrollBarWidth = 24;
             if (rct.X - scrollBarWidth < tabCtrl.Width)
             {
                 return true;
             }
             else
             {
                 return false;
             }
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文