if () { for (int row = 0; row < this.dataGridView1.Rows.Count; row++) //循环遍历1~8行 { temp &= dataGridView1.Rows[row].Cells[3].Value.ToString() == "pass"; if (temp) { dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[3].Value = "pass"; } else { dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[3].Value = "fail"; } } }
如果在Result那1到8行全部得出结果之后,我再去判断,那么上面的if()该怎么写?
听不懂.是上次那个8行的同意列都为pass的结果为true的需求吗
是啊,我不能上传图片,真麻烦。
@某: bool result=true; for(i){if(rows[i].col!="pass"){result=false;break;}}
if(!result){color="red"}
&=,什么意思
我发现这段代码是错的了,但是我还没有解决问题
if(i==7)return;
放到for最下面
我发现这段代码是错的了,但是我还没有解决问题