我需要简单的逻辑迭代,但很多项目......这是我的代码
byte[] nc1 = new byte[40];
nc1 = ChekSt(36, "192.168.2.55", 38, 40);
//I need to iterate 40 times so my 40 checkbox can be updated
switch (nc1[0])
{
case 1: checkBox1.Checked = false; break;
case 2: checkBox1.Checked = true; checkBox1.CheckState = CheckState.Indeterminate; break;
case 3: checkBox1.Checked = true; checkBox1.CheckState = CheckState.Checked; break;
}
我有 checkBox1、checkBox2、checkBox3... 到 checkBox40
我需要类似的东西checkBox(i).checked = true;
所以不必编写我的代码 40 次
任何人有想法...?