Tab控件选择
如何实现一些选项卡需要通过某些事件或某些按钮单击来关闭?
How to implement some of the tabs need to close by some events or some button click?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何实现一些选项卡需要通过某些事件或某些按钮单击来关闭?
How to implement some of the tabs need to close by some events or some button click?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以像这样从 TabControl 中删除选项卡:
关闭多个选项卡时,您可能需要首先删除索引号较高的选项卡,因为弹出选项卡时选项卡页的索引会发生变化:
如果关闭选项卡后再次需要选项卡,那么
Hide()
将没有帮助。 您应该在内存中存储每个选项卡的引用,并在以后添加或插入它们:使用下面的示例,您可以保留关闭的选项卡集合,并稍后将它们推送到 TabControl。 最好创建一个小类,允许您保存位置和对选项卡的引用。此示例使用具有相同功能的泛型 List 和 Control.Tag。
You can remove a tab from TabControl like this:
When closing multiple tabs you may want to remove the tabs with a higher index number first as the index of tab pages change when you pop a tab:
If you need the tabs again after closing them, then
Hide()
will not be helpful. You should store a reference for each tab in memory and add or insert them later:Using the example below you may keep a collection of tabs that you closed and push them to the TabControl later on. Preferably you will create a small class that allows you to save the position and reference to tabs in. This example uses a generics List and Control.Tag that does the same.