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?