Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以删除我在运行时添加的标签页上的控件?请记住只删除运行时添加的控件(C#)?
非常感谢 :)
添加具有唯一名称的控件并随时删除控件。
例如:
tabControl1.TabPages["tb1"].Controls.Remove("txtName");
注意:控件名称txtName应该是唯一的
txtName
您需要记住在运行时未添加的控件的名称,或者您“标记”那些在运行时添加的控件。例如,通过将 TAG 属性设置为任意值。然后您可以稍后删除具有特定 TAG 属性的控件。