How to remove black cell color or selection color in datagridviewcomboboxcolumn

By | 6th September 2017

While selecting datagridviewcomboboxcolumn cell select, sometimes the cell backcolor or selection color turns black, follow the below source code to avoid it.

 
 
In the dataGridView1_EditingControlShowing event, you just write it as:
 
e.CellStyle.BackColor = Color.White;