C# ComboBox ValueChanged / IndexChanged event fires too often

Problem: You use the ComboBox SelectedIndexChanged event handler to do something after the user changes another item. But this event also fires on form loading and e.g. when the DataBinding value changes. Solution: Use the event „SelectionChangeCommitted“....
  [email protected]