我有一个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()