怎么让datagridview的某一列不可用

2025-01-02 10:44:09
推荐回答(2个)
回答1:

同意上做法,也可以设置图片里面的只读

回答2:

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;
}