Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ComboBoxEdit.SelectedValueChanged Event

Occurs when changing the index of the selected value in the combo box editor.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Events")]
public event EventHandler SelectedValueChanged

#Event Data

The SelectedValueChanged event's data class is EventArgs.

#Remarks

The SelectedValueChanged event occurs when changing the value of the ComboBoxEdit.SelectedIndex property. This property denotes the index of the selected value, which is provided by the ComboBoxEdit.SelectedItem property and displayed in the control’s edit box.

The SelectedValueChanged event occurs at the same time as the ComboBoxEdit.SelectedIndexChanged event. You can use these events interchangeably in your code. SelectedValueChanged is provided only for compatibility with the standard ComboBox control.

See the ComboBoxEdit.SelectedIndexChanged topic for more information.

The RepositoryItemComboBox.SelectedValueChanged event is equivalent to the current event.

See Also