Skip to main content

CheckedComboBoxStyleSettings Class

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

Namespace: DevExpress.Xpf.Editors

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

#Declaration

public class CheckedComboBoxStyleSettings :
    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 checked combo box.

<dxe:ComboBoxEdit x:Name="combo" Width="200" Separator=";">
    <dxe:ComboBoxEdit.Items>
        <dxe:ComboBoxEditItem Content="David Miles"/>
        <dxe:ComboBoxEditItem Content="John Spor"/>
        <dxe:ComboBoxEditItem Content="Nick Jackson"/>
    </dxe:ComboBoxEdit.Items>
    <dxe:ComboBoxEdit.StyleSettings>
        <dxe:CheckedComboBoxStyleSettings/>
    </dxe:ComboBoxEdit.StyleSettings>
</dxe: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
CheckedComboBoxStyleSettings
See Also