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

2024年11月15日 00:44
有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):

路过