Skip to main content
A newer version of this page is available. .

BaseListBoxControl.SelectedValueChanged Event

Occurs after a value of the selected item has been changed.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Property Changed")]
public event EventHandler SelectedValueChanged

Event Data

The SelectedValueChanged event's data class is EventArgs.

Remarks

Handle the SelectedValueChanged event to perform actions after the value of the selected item has changed. The event fires immediately after the BaseListBoxControl.SelectedValue property value was changed.

Note: changing the value of the BaseListBoxControl.ValueMember property at runtime changes the value of the selected item. Thus, the SelectedValueChanged event fires.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the SelectedValueChanged event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also