Skip to main content

RadioComboBoxStyleSettings Class

Defines the radio button list appearance for a combo box editor's dropdown window.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v14.2.dll

#Declaration

public class RadioComboBoxStyleSettings :
    BaseComboBoxStyleSettings

#Remarks

Depending upon the type of object assigned to the combobox editor's BaseEdit.StyleSettings property, its popup window can be represented as a simple item list (ComboBoxStyleSettings), as a check box list with the enabled multi-selection feature (CheckedComboBoxStyleSettings), or as a radio button list (RadioComboBoxStyleSettings).

#Examples

This example shows how to create a combobox edit within the dropdown represented by a radio item list.

<agedit:ComboBoxEdit Width="300" VerticalAlignment="Center">
    <agedit:ComboBoxEdit.StyleSettings>
        <agedit:RadioComboBoxStyleSettings/>
    </agedit:ComboBoxEdit.StyleSettings>
    <agedit:ComboBoxEditItem Content="Seattle"/>
    <agedit:ComboBoxEditItem Content="London"/>
    <agedit:ComboBoxEditItem Content="Redmond"/>
    <agedit:ComboBoxEditItem Content="Tacoma"/>
</agedit:ComboBoxEdit>

#Inheritance

Object
DispatcherObject
DependencyObject
Visual
UIElement
FrameworkElement
BaseEditStyleSettings
DevExpress.Xpf.Editors.TextEditStyleSettings
DevExpress.Xpf.Editors.ButtonEditStyleSettings
DevExpress.Xpf.Editors.PopupBaseEditStyleSettings
DevExpress.Xpf.Editors.BaseItemsControlStyleSettings<LookUpEditBase>
DevExpress.Xpf.Editors.BaseLookUpStyleSettings
BaseComboBoxStyleSettings
RadioComboBoxStyleSettings
See Also