问题
I have DataGridView it's contains 4 columns, one of the column is DataGridViewComboBoxColumn.
In DataGridView I want to prevent user to delete, edit, add rows in data grid view, so I set the ReadOnly property of the DdataGgridView to true.
My problem is that DataGridViewComboBoxColumn is not selectable because ReadOnly property is set true.
Any idea how can I prevent user to delete, edit, add rows in DataGridView control, but make DataGridViewComboBoxColumn selectable?
回答1:
Please read the following artice.
Its about make readonly, just the cells, not the whole DataGrid
来源:https://stackoverflow.com/questions/24101266/how-to-make-combo-box-column-selectable-if-readonly-property-of-the-datagridview