如何使datagridview新条目添加的行可编辑

时间:2018-10-07 08:42:17

标签: c# visual-studio-2013 datagridview .net-4.0

我在按钮上仅读了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);

0 个答案:

没有答案