Event SelectedItemChanged
Occurs when the SelectedItem property value changes.
public event EventHandler? SelectedItemChanged
Returns
- EventHandler
- Occurs when the property value changes.
Remarks
This event is raised if the SelectedItem property is changed by either a programmatic modification or user interaction. You can create an event handler for this event to determine when the selected index in the ComboBox has been changed. This can be useful when you need to display information in other controls based on the current selection in the ComboBox. You can use the event handler for this event to load the information in the other controls.