IDE: Visual studio c# .net 4.0
In my project I have a datagridview in that I have a comboboxcell, which is having 4 items a,b,c,d in dropdown, and I want to show that dropdown list when user clicks on button1
datagridviewComboboxcell on button_click event.
button_Onclick(sender s, eventargs e)
{
DataGridViewComboBoxCell dgv = (DataGridViewComboBoxCell)gvTeam2.Rows[0].Cells[4];
dgv.dropdown = true // available in normal combobox
// not available in datagridview combobox cell.
}