0

我使用数据集将数据库连接到 DataGridView 并设置:

DataGridView.autogenerate=false

然后我使用 gui 属性逐列添加,然后我将其中一列设置为复选框。

首先,我想将复选框的值设置为 true 或 false,然后检查该值是否为 true,如果为 true,那么我想获取另一列但在同一行中的值,然后隐藏当前行。

4

1 回答 1

0

首先,您需要检查该单元格是否被选中。

if (DataGridViewRow.Cells[CellNumber].Value != null)
{
    if ((Boolean)DataGridViewRow.Cells[CellNumber].Value == true)
    {
        //Get other cell value
    }
}

完成此操作后,您可以隐藏该行。

DataGridViewRow.Visible = false;
于 2012-05-30T19:31:08.000 回答