I have a DataGridView
, with several ComboBoxColumns
in it. Is there a way to create an event, so that each time a ComboBoxColumn
cell is entered and an item selected, the event fires?
All I can figure out so far is this:
private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 0)
{
MessageBox.Show("Amanda");
}
}
Which is not doing anything.