我的表单上有大约九个组合框,每个组合框都根据它之前的组合框进行过滤,所以当我更改第一个组合框的值时,我需要清除其余的,有没有办法遍历所有组合框并清除每一个?我试过这个:private void Clear()
{ foreach (ComboBox cmb in Controls.OfType<ComboBox>())
cmb.Items.Clear();
}
1 回答
HUH函数
TA贡献1836条经验 获得超4个赞
cmb.Items.Clear(); //this removes the items
cmb.ResetText(); //this clear text
- 1 回答
- 0 关注
- 75 浏览
添加回答
举报
0/150
提交
取消