计算其中Combox值为x的DataGridView的行

时间:2019-02-06 15:16:53

标签: c# winforms datagridview

我正在使用count函数对DataGridView的行进行计数,如下所示:

 private void button1_Click(object sender, EventArgs e)
    {
        {
            int noOfRows = dataGridTable.RowCount;
            noOfRows--;
            textBox1.Text = noOfRows.ToString();

        }
    }

现在我在DataGridView的列之一中有一个Combox。例如,我的Combox包含Yes或No。我的功能很好地计算了行数,但是现在我只想统计在Combox中选择Yes的行数。我该怎么办?

非常感谢!

1 个答案:

答案 0 :(得分:0)

您可以检查每个Value的{​​{1}},并仅计算“是”值:

DataGridViewComboBoxCell