datagridview 动态删除行报错,未将对象引用设置添加到对象的实例。
未绑定数据库,只动态添加删除,有数据时删除行报错。
public void DelRow(TelnetSession session)
{
try
{
for (int i = dataGridView1.Rows.Count - 1; i >= 0; i--)
{
DataGridViewRow row = dataGridView1.Rows[i];
if (dataGridView1.Rows[i].Cells[7].Value == session.SessionID)
{
string station = dataGridView1.Rows[i].Cells[0].Value.ToString();
this.ShowMsg("设备" + station + "已下线");
if(dataGridView1.CurrentRow.Cells[0].Value!=null)
dataGridView1.Rows.RemoveAt(i); //删除一行
return;
}
}
}
catch (Exception e)
{
LogHelper.WriteLog("DelRow函数调用异常", e);
}
}
报错:
试过的解决方法
①if(!row.IsNewRow)
②if(dataGridView1.Rows.Count>0)
③if(dataGridView1.CurrentRow.Cells[0].Value!=null)