我正在将SQL数据检索到数据网格视图中,现在我希望将特定行数据放入其他网络,但我得到空对象引用。
System.NullReferenceException:'对象引用未设置为 一个对象的实例。'
public void dgvEmployee_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
this.Close();
Update up = new Update();
up.IdBox.Text = this.dgvEmployee.CurrentRow.Cells[0].Value.ToString();
up.NameBox.Text = this.dgvEmployee.CurrentRow.Cells[1].Value.ToString();
up.ManagerBox.Text = this.dgvEmployee.CurrentRow.Cells[2].Value.ToString();
up.ShowDialog();
}