使用 C# 关闭选项卡控件中的选项卡
当我的应用程序启动时,我正在动态创建多个选项卡。 这样说吧,如果我的 tabcontrol 有两个选项卡,它会调用记事本 和油漆女士。
当记事本关闭时....我希望与记事本相关的选项卡在以下位置关闭 我的选项卡控件。
如何 ?
I am creating multiple tabs dynamically when my application starts up.
Put it this way, if my tabcontrol have two tabs in it, which calls Notepad
and ms paint.
when the notepad is closed.... I want my tab respective to notepad to be closed in
my tabcontrol.
How ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是说您想要删除一个选项卡吗?选项卡并未真正打开或关闭。
以下是删除选项卡的方法:
其中 notepadTab 是对与记事本应用程序关联的选项卡的引用。您已经说过页面是动态创建的——查看一下Remove() 的函数重载以找到适合您需要的页面。
Do you mean to say that you want a tab removed? Tabs aren't really open or closed.
Here's how you'd remove a tab:
where notepadTab is a reference to the tab associated with the notepad application. You've stated that pages are created dynamically - have a look at the function overloads of Remove( ) to find one that suits your needs.