1

我试图通过在 DataGridview 中选择一个单元格/行然后单击删除按钮来通过他的 ID 删除用户。我试图通过使用行索引和列索引来获取 ID。但是,即使我的 datagridview 包含行,我也无法删除用户,因为 'string id' 的值为 NULL。

private void buttonDeleteUser_Click(object sender, EventArgs e)
{
   int rowindex = dataGridView1.CurrentCell.RowIndex;
   int columnindex = 0;
   string id = dataGridView1[rowindex, columnindex].Value.ToString();
   controller_employee.delete_employee(Int32.Parse(id));
}

为什么它为 NULL,我能做些什么来解决这个问题?

4

1 回答 1

1
ID = dataGridView.SelectedCells[0].RowIndex;

此处 SelectedCells[0] 指定列号。

并尝试选择整行而不是单个单元格

于 2013-01-17T04:16:17.130 回答