我有DataGridView
几列,每一行代表我的对象,具有几个属性,如名称、id 等。更改后我Name column
Checkbox
想更新我的对象我怎样才能获得我的列Checknox
状态?这是我尝试过的:
private void dataGridView1_CurrentCellDirtyStateChanged(object sender, EventArgs e)
{
if (dataGridView1.IsCurrentCellDirty)
{
dataGridView1.CommitEdit(DataGridViewDataErrorContexts.Commit);
}
}
private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (dataGridView1.Columns[e.ColumnIndex].Name == "Name")
{
}
}