Winform中DataGridView如何获得单元格中复选框,以及代码设置单元格内容。

2024-11-15 00:44:39
推荐回答(2个)
回答1:

DataGridView1.Rows[i].Cells[j].Values=单元格的值;
设备复选框的值:
DataGridView1.Rows[i].Cells[j].Valuse=true;
DataGridView1.Rows[i].Cells[j].Valuse=false;
获取复选框的值:
bool flag=(bool)DataGridView1.Rows[i].Cells[j].FormattedValue;

回答2:

路过