同意上做法,也可以设置图片里面的只读
for(int i=0;i GridView1.Rows[i].Cells[1].Enabled =false; 如果是dataGridView这样就在这里BeginEdit事件设置 private void dataGridView1_CellBeginEdit(object sender, DataGridViewCellCancelEventArgs e) { if (e.ColumnIndex == 1) e.Cancel = true; }