我的窗户上有这样的东西
field1 field 2 mandatory showfield
textbox1 textbox2 checkbox1 checkbox 2
textbox3 textbox4 checkbox3 checkbox4
.... 总共 5 个这样的字段
我想要的是首先遍历文本框,如果它们被填充我想检查复选框是否被选中
我有以下数据
string[] textdata = { textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text, textBox5.Text, textBox6.Text, textBox7.Text, textBox8.Text, textBox9.Text, textBox10.Text, textBox11.Text };
bool[] chk = { checkBox1.Checked, checkBox2.Checked, checkBox3.Checked, checkBox4.Checked, checkBox5.Checked, checkBox6.Checked, checkBox7.Checked, checkBox8.Checked, checkBox9.Checked, checkBox10.Checked, checkBox11.Checked, checkBox12.Checked };
这是我试过的