标签页控件

发布于 2024-10-07 00:44:45 字数 67 浏览 5 评论 0原文

有什么方法可以删除我在运行时添加的选项卡页上的控件吗?请记住只删除运行时添加的控件(C#)?

多谢 :)

Is there any way to delete the controls on a tab-page that i have added on runtime ? Plz remember only to delete runtime added controls (C#) ?

Thanks a lot :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

靖瑶 2024-10-14 00:44:45

添加具有唯一名称的控件,并随时删除控件。

例如

 tabControl1.TabPages["tb1"].Controls.Remove("txtName");

注意:控件名称txtName应该是唯一的

Add controls with unique name and delete controls whenever you want.

Eg:

 tabControl1.TabPages["tb1"].Controls.Remove("txtName");

NOTE:Control name txtName should be unique

凉风有信 2024-10-14 00:44:45

您需要记住未在运行时添加的控件的名称,或者“标记”在运行时添加的控件。例如,通过将 TAG 属性设置为任意值。然后您可以稍后删除具有特定 TAG 属性的控件。

You need to either remember the name of the controls that were not added at runtime or you "flag" those that are added at runtime. E.g. by setting the TAG property with an arbitrary value. Then you can delete the controls that have a specific TAG property later.

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