在 tabcontrol (winforms) 中设置单个选项卡的可见性

发布于 2024-08-08 19:42:41 字数 224 浏览 5 评论 0原文

有没有办法设置选项卡控件中单个选项卡的可见性?我认为像这样简单的事情应该有效,但似乎没有任何作用。

tabControl1.TabPages[1].Visible = false;  
tabControl1.Refresh();

将有一个始终显示的主选项卡,但我希望有其他可以“打开/关闭”的选项卡。我不想删除选项卡,因为我可能需要再次显示。

妈的

Is there a way to set the visibility of a single tab in a tabcontrol? I thought something simple like this should work, but does not seem to to anything.

tabControl1.TabPages[1].Visible = false;  
tabControl1.Refresh();

There will be a main tab that always shows but I want to have other tabs that I can "turn on\off". I don't want to remove the tabs since I may need to show then again.

fk

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

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

发布评论

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

评论(3

仲春光 2024-08-15 19:42:41

您可以删除 tabControl 页面

this.tControl1.TabPages.Remove(this.tControl1.TabPages["tabPageName"]);

You can remove the tabControl page

this.tControl1.TabPages.Remove(this.tControl1.TabPages["tabPageName"]);
凉城已无爱 2024-08-15 19:42:41

它显然不是标准 Windows 窗体库的一部分,但 Infragistics UltraTabControl 具有(除其他功能外)每个选项卡页都有一个 Visible 属性。

It's obviously not part of the standard Windows Forms library, but the Infragistics UltraTabControl has (among other features) a Visible property for each tab page.

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