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

RadioGroup.SelectedIndexChanged Event

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

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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.

See Also