动态清晰的控制
我有组框,我想清除其中的所有控件,我尝试
public void ClearPanels(GroupBox control)
{
foreach (Control p in control.Controls)
{
control.Controls.Remove(p);
}
}
但仍保留一个面板,问题是我在运行时创建控件,并想在运行时删除它
I have groupbox I want to clear all the control in it , I try
public void ClearPanels(GroupBox control)
{
foreach (Control p in control.Controls)
{
control.Controls.Remove(p);
}
}
but a panel remain it , the problem I create the controls in runtime , and want to remove it in runtime
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好使用它,它可以一次清除所有控件,而无需使用循环:
Better use this which clears all the controls at once without using a loop:
使用 RemoteAt
或 清除
Use RemoteAt
or Clear