我有一个 GroupBox,我在其中动态添加控件。我添加的控件有两种类型DevExpress.XtraEditors.TextEdit
,Windows.Forms.Label
我正在尝试使用以下方法删除这些控件
foreach (Control control in salesBox.Controls)
{
control.Dispose();
salesBox.Controls.Remove(control);
}
这是正确删除TextEdit
控件而不是Label
控件。循环没有遍历Label
控件。