我正在尝试遍历面板中的每个控件并清除所有内容(如果它是 DropDownList)。
这是我所拥有的:
private void ClearOut()
{
foreach (Control list in MainPanel.Controls)
{
if (list.ToString().Equals("System.Web.UI.WebControls.DropDownList"))
{
//Clear it out here
}
}
}
这段代码确实找到了每个 DropDownList,但是一旦我到达那里,我就无法弄清楚如何清除它们。我不能使用像 selectedindex 或 items.clear() 这样的 DropDownList 的任何属性。