У меня есть сетка данных [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()