c#如何获取dataGridView中特定行的行数。

2024-11-17 03:09:20
推荐回答(1个)
回答1:

这个很少有人根据特定行来统计数据的吧,一般都是在数据库里面查询你需要的数据的,

如果你硬是要按照你说的这个方式去做的话,你就这样咯
int count=0;
forech(DataGridViewRow DR in dataGridView1A)
{
//用颜色
count+=DR.DefaultCellStyle.BackColor==Color.LightGreen?1:0;
//或者用列
DataGirdViewCellCollection Cells=DR.Cells;
count+=Cells["是否已归还"].Value.!=null&&Cells["是否已归还"].value.tostring()== "0")?1:0;
}
MessageBox.show(string.formate("未归还的书:{0}本”,count));

或者用你现有的代码
int back=0;//没还书的数量
private void dataGridView1A_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
back=0;
datagridviewreflsh_2(ref back);
}

void datagridviewreflsh_2(ref back)
{
for (int i = 0; i < dataGridView1A.Rows.Count; i++)
{
if (dataGridView1A.Rows[i].Cells["是否已归还"].Value != null)
{
if (dataGridView1A.Rows[i].Cells["是否已归还"].Value.ToString() == "0")
{
dataGridView1A.Rows[i].DefaultCellStyle.BackColor = Color.LightGreen;
back++;//加一句
}
}
}
}