Back to Devexpress

ComboBoxEdit Operation Modes

wpf-116528-controls-and-libraries-data-editors-common-features-editor-operation-modes-comboboxedit.md

latest3.1 KB
Original Source

ComboBoxEdit Operation Modes

  • Jan 26, 2026

The ComboBoxEdit supports the following operation modes:

  • default
  • checked
  • radio
  • token
  • checked token

To specify the mode, set the StyleSettings property to the corresponding mode object.

Combobox (Default)

The mode object: ComboBoxStyleSettings.

xaml
<dxe:ComboBoxEdit ItemsSource="{Binding Customers}">
    <dxe:ComboBoxEdit.StyleSettings>
        <dxe:ComboBoxStyleSettings />
    </dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>

Checked Combobox

The mode object: CheckedComboBoxStyleSettings.

xaml
<dxe:ComboBoxEdit 
    ItemsSource="{Binding Customers}"
    SeparatorString="; ">
    <dxe:ComboBoxEdit.StyleSettings>
        <dxe:CheckedComboBoxStyleSettings />
    </dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>

Radio Button Combobox

The mode object: RadioComboBoxStyleSettings.

xaml
<dxe:ComboBoxEdit ItemsSource="{Binding Cities}">
    <dxe:ComboBoxEdit.StyleSettings>
        <dxe:RadioComboBoxStyleSettings />
    </dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>

Token Combobox

The mode object: TokenComboBoxStyleSettings.

xaml
<dxe:ComboBoxEdit ItemsSource="{Binding Cities}">
    <dxe:ComboBoxEdit.StyleSettings>
        <dxe:TokenComboBoxStyleSettings />
    </dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>

Checked Token Combobox

The mode object: CheckedTokenComboBoxStyleSettings.

xaml
<dxe:ComboBoxEdit ItemsSource="{Binding Cities}">
    <dxe:ComboBoxEdit.StyleSettings>
        <dxe:CheckedTokenComboBoxStyleSettings />
    </dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>

Refer to the following help topic for more information: Multiple Selection in ComboBoxEdit, LookUpEdit, and ListBoxEdit.

See Also

Editor Operation Modes

Create a Checked ComboBox

SeparatorString