我在按钮上仅读了datagridview
,然后单击“我执行以下操作”
DGV_PatientSessions.AllowUserToAddRows = true;
然后我要仅使仅个新条目的特定单元格添加为可编辑行
我在下面尝试过,但是它行不通,我需要知道如何捕获新添加的行的rowindex
吗?
int RowIndex = DGV_PatientSessions.CurrentRow.Index;
DGV_PatientSessions.Rows[RowIndex].Cells[4].ReadOnly = true;
DGV_PatientSessions.Rows[RowIndex].Cells[5].ReadOnly = true;
DGV_PatientSessions.Rows[RowIndex].Cells[6].ReadOnly = true;
DGV_PatientSessions.Rows[RowIndex].Cells[7].ReadOnly = true;
DGV_PatientSessions.CurrentCell = DGV_PatientSessions.Rows[RowIndex].Cells[4];
DGV_PatientSessions.BeginEdit(true);