0

我有 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);

还有另一种方法可以实现吗?

4

1 回答 1

0

0false不等于 , 1 不等于true。编写一个函数将这些数字转换为Boolean值:

public bool ConvertNumberToBoolean(int number)
{
    if (number == 0)
    {
        return false;
    }
    else
    {
        return true;
    }
}

为单元格设置值时使用此函数:

row.Cells.Add(new DataGridViewCheckBoxCell()
{
    Value = ConvertNumberToBoolean(Convert.ToInt32(debugger[1]));
});

这是一个非常基本的认识,但我相信你明白了

于 2013-02-04T08:29:14.060 回答