So, basically I'm using a ComboBox.SelectedIndexChanged
event to fill 5 more ComboBox
s wich each have their own SelectedIndexChanged
event as well.
The problem is that when the first SelectedIndexChanged
event fires to fill the rest.. it also fires the other ComboBox
es' SelectedIndexChanged
event.
In order to prevent that, I have found a solution using the event SelectionChangeCommited
on the rest of the ComboBox
es.
But now, that event (unlike SelectedIndexChanged
) doesn't fire on the first click on the item of the ComboBox
... you need to select the item two or three times before it does.
So, my question is: is there any way to fix these problems?