使用 C# 关闭选项卡控件中的选项卡

发布于 2024-08-05 10:14:44 字数 136 浏览 3 评论 0原文

当我的应用程序启动时,我正在动态创建多个选项卡。 这样说吧,如果我的 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 技术交流群。

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

发布评论

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

评论(1

小鸟爱天空丶 2024-08-12 10:14:44

您的意思是说您想要删除一个选项卡吗?选项卡并未真正打开或关闭。

以下是删除选项卡的方法:

myTabControl.TabPages.Remove(notepadTab);

其中 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:

myTabControl.TabPages.Remove(notepadTab);

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.

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