选项卡控件访问每个选项卡成员 Winform
单击特定选项卡时如何隐藏按钮?
例如,我有 4 个选项卡,每当我单击选项卡 1 中的某个按钮时,我应该做什么 形态会消失吗?
我尝试过使用 if(tabControl.SelectedIndex == 1){ button1.Visible = false; }
但它不起作用。 T_T
How can I hide a button when a specific tab is clicked?
for example I have 4 tabs what should I do whenever I click tab 1 a certain button in my
form will disappear?
i've tried using if(tabControl.SelectedIndex == 1){ button1.Visible = false; }
but it doesn't work. T_T
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在特定的
TabPage
上使用Click
事件,只需记住在适当的时候再次显示它即可。
或者更好的是,只需监听所选选项卡何时发生变化:
或者更简单:
You could use the
Click
event on that particularTabPage
Just remember to show it again when the time is appropriate.
Or better yet, just listen for when the selected tab changes:
Or more simply: