如何限制dataGridView中的某一行不能编辑
如何限制dataGridView中的某一行不能编辑
------解决方案--------------------可以用一个不是很“正统”的办法:
private void dataGridView1_RowEnter(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex == 2)
dataGridView1.ReadOnly = true;
else
dataGridView1.ReadOnly = false ;
}
这样第二行就不可以编辑了,其它行可以。