我正在用C#开发一个应用程序,我正在使用datagridview和gridview第一列包含复选框,我想要复选框是真的与否,但它给了我'对象参考未设置为的例外一个对象的实例'。代码如下:
private void btnDelete_Click(object sender, EventArgs e)
{
StudentDAL s = new StudentDAL();
try
{
for (int i = 0; i < this.dataGridView1.RowCount; i++)
{
if (!DBNull.Value.Equals(this.dataGridView1.Rows[i].Cells[0]) && (bool)this.dataGridView1.Rows[i].Cells[0].Value == true)
{
s.delete(Convert.ToInt32(this.dataGridView1.Rows[i].Cells[1].Value));
i--;
}
}
this.dataGridView1.DataSource = s.getAll();
}
catch (Exception nn)
{
}
}
请帮帮我。
答案 0 :(得分:0)
您正在尝试引用尚未初始化的对象(我相信这个实例Row [i])。
尝试在for循环中放置一个断点并逐步执行(F10)并检查它在抛出异常时的位置。
答案 1 :(得分:0)
添加更多验证
foreach (DataGridViewRow rw in this.dataGridView1.Rows)
{
if (rw.Cells.Count > 2 &&
rw.Cells[0].Value != DBNull.Value && String.IsNullOrWhiteSpace(rw.Cells[0].Value.ToString()) &&
((bool)rw.Cells[0].Value) &&
rw.Cells[1].Value != DBNull.Value && String.IsNullOrWhiteSpace(rw.Cells[1].Value.ToString()))
{
s.delete(Convert.ToInt32(rw.Cells[1].Value));
}
}
答案 2 :(得分:0)
首先你必须找到你的CheckBox控件,然后你可以检查它是否被选中:
Int32 i;
CheckBox k;
for (i = 0; i < GridView1.Rows.Count; i++)
{
k = ((CheckBox)(GridView1.Rows[i].Cells[0].FindControl("chk")));
if (k.Checked == true)
{
//your code here
}
else
{
//your code here
}
}