ComboBox: difference between SelectedIndexChanged and SelectionChangeComitted events

  • Thread starter Thread starter Jo Vermeulen
  • Start date Start date
J

Jo Vermeulen

Hello,

I was wondering what is the difference between the selectedIndexChanged
and the selectionChangeComitted events of ComboBoxes.

Thanks in advance,
 
Jo Vermeulen said:
Hello,

I was wondering what is the difference between the selectedIndexChanged
and the selectionChangeComitted events of ComboBoxes.

I'm pretty sure SelectionChangeCommitted is only raised by UI occurances,
i.e. actually using the ComboBox and moving the highlight.
SelectedIndexChanged is raised a whole lot, including databinding, any time
the SelectedIndex property is changed by either the UI or code.

Best Regards,

Andy
 
Back
Top