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

RadioGroup.SelectedIndexChanged Event

Occurs when changing the index of the selected value in the radio group editor.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

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

Event Data

The SelectedIndexChanged event's data class is EventArgs.

Remarks

The SelectedIndexChanged event occurs when changing the value of the RadioGroup.SelectedIndex property. This property specifies the index of the selected item within the RepositoryItemRadioGroup.Items collection.

The editor’s SelectedIndexChanged event is equivalent to the RepositoryItemRadioGroup.SelectedIndexChanged event available via the RadioGroup.Properties object, i.e. adding/removing an event handler for the current event actually affects the RepositoryItemRadioGroup.SelectedIndexChanged event.

Refer to the RepositoryItemRadioGroup.SelectedIndexChanged topic for more information.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the SelectedIndexChanged 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