foreach (Control c in groupBox1.Controls) { if (c is TextBox) { //这里写代码逻辑 } }
遍历的时候,需要用Control遍历;
如果直接使用foreach(TextBox t in groupBox1.Controls)
并且groupbox上有Lable或其他非textbox控件的时候,会提示不能强制转换为textbox
所以,需要使用 is来判断,获取的控件是否为textbox
时间: 2024-11-03 21:12:46