我有 6 列,其中第一列是文本框单元格,其余的是复选框。我想把二维数组的值放到数据网格中。
string[,] debugger={{"name","0","0","1","1","0"}};
0=false 1=true(我从 datagridview 属性窗口分配了 false 值和 true 值。当我尝试这个时,它给了我一个格式异常?
grdFont.ColumnCount=6;
var row = new DataGridViewRow();
row.Cells.Add(new DataGridViewTextBoxCell()
{
Value = debugger[0]
});
row.Cells.Add(new DataGridViewCheckBoxCell()
{
Value = debugger[1]
});
row.Cells.Add(new DataGridViewCheckBoxCell()
{
Value = debugger[2]
});
row.Cells.Add(new DataGridViewCheckBoxCell()
{
Value = debugger[3]
});
row.Cells.Add(new DataGridViewCheckBoxCell()
{
Value = debugger[4]
});
row.Cells.Add(new DataGridViewCheckBoxCell()
{
Value = debugger[5]
});
grdFont.Rows.Add(row);
还有另一种方法可以实现吗?