你好,我試圖在我的panel1的控件中找到所需的標籤。我所有的標籤都被命名爲「lbl0」,「lbl1」等等。循環遍歷所有控件並清除所需
所以我經歷了所有這些標籤試圖循環,直到我找到合適的人:
Control DelCon(string Name)
{
foreach (Control c in panel1.Controls)
if (c.Name == Name)
{
c.Controls.Clear(); // this should delete the control
}
return null;
}
但在即使c.Name == Name
控制不會被刪除結束。
可能有人幫我解決這個問題嗎?
在此先感謝。
RemoveByKey爲+1 – Steve