我试图通过在 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,我能做些什么来解决这个问题?