C# Winform 隐藏/显示选项卡
是否可以隐藏选项卡并且每当我按下按钮时它就会出现?
我所说的选项卡的意思是下一个选项卡,而不是选项卡控件本身,选项卡标题(或任何名称)。
非常感谢!!!我希望我真诚的感谢能够唤醒你们的心来回答这个简单的问题。
is it possible to hide tab and whenever I press a button it will appear?
what i mean by tab is the next tab not the tabcontrol itself the tab header (or whatever it is called).
Thank You Very Much!!! I hope my sincere appreciation will awaken your hearts to answer this simple question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
隐藏选项卡:
tabControl2.TabPages.Remove(tabPage4);
其中tabPage4
是显示选项卡的选项卡的名称:
tabControl2.TabPages.Add(tabPage4);< /code>
这是链接
hiding tab:
tabControl2.TabPages.Remove(tabPage4);
wheretabPage4
is the name of the tabshowing tab:
tabControl2.TabPages.Add(tabPage4);
here's the link