我在同一表单上有一个数据网格和一些文本框。我想通过单击数据网格填充文本框。但它显示此错误:对象引用未设置为对象的实例。这是我的数据网格点击事件代码
if (e.RowIndex >= 0)
{
DataGridViewRow row = this.dataGridView1.Rows[e.RowIndex];
textBox5.Text = row.Cells[0].Value.ToString();
textBox1.Text = row.Cells[1].Value.ToString();
textBox3.Text = row.Cells[2].Value.ToString();
textBox4.Text = row.Cells[3].Value.ToString();
textBox6.Text = row.Cells[4].Value.ToString();
textBox7.Text = row.Cells[5].Value.ToString();
textBox2.Text = row.Cells[6].Value.ToString();
}