我刚刚对此进行了编码:
Description.Text = dataGridView.SelectedRows[0].Cell[1].Value.ToString();
ProductType.SelectedText= dataGridView.SelectedRows[0].Cells[2].Value.ToString();
Image.Text = dataGridView.SelectedRows[0].Cells[4].Value.ToString();
在第一行,我使用了文本框,第二行是comboBox,在最后一行,我使用了PictureBox。我把datagridview放在表单中。当我点击datagrid的内容时,它会突然提示我NullReferenceExeption was unhandled
,
Object reference not set to an instance of an object
- 我应该使用的正确代码是什么?