How do I allow edit only a particular column in datagridview in windows application?

后端 未结 3 755
攒了一身酷
攒了一身酷 2020-12-09 01:38

I want to enable only two columns in the DataGridview to be able to edit. The others should not be allowed to edit. Further I am not directly linking to datasource; I will b

3条回答
  •  没有蜡笔的小新
    2020-12-09 02:39

    dataGridView1.ReadOnly = false;
    dataGridView1.Columns[1].ReadOnly = true;
    dataGridView1.Columns[2].ReadOnly = true;
    

    here first column (index 0) will be editable.

提交回复
热议问题