我试图添加一行时datagridview添加两行

时间:2018-12-23 04:26:43

标签: c# visual-studio datagridview

我有一个datagridview [c#],我想将文本框中的值添加到我创建的行中。网格显示两行而不是一列

我的代码是

int rowIndex = dataGridView1.Rows.Add();
            var row = dataGridView1.Rows[rowIndex];
            dataGridView1.Refresh();
            row.Cells[COL_SLNO.Index].Value = txt_slno.Text.ToString();
            row.Cells[COL_PRODUCT.Index].Value = txt_product.Text.ToString();
            row.Cells[COL_GSTP.Index].Value = txt_gst.Text.ToString()

0 个答案:

没有答案