wpf-116528-controls-and-libraries-data-editors-common-features-editor-operation-modes-comboboxedit.md
The ComboBoxEdit supports the following operation modes:
To specify the mode, set the StyleSettings property to the corresponding mode object.
The mode object: ComboBoxStyleSettings.
<dxe:ComboBoxEdit ItemsSource="{Binding Customers}">
<dxe:ComboBoxEdit.StyleSettings>
<dxe:ComboBoxStyleSettings />
</dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>
The mode object: CheckedComboBoxStyleSettings.
<dxe:ComboBoxEdit
ItemsSource="{Binding Customers}"
SeparatorString="; ">
<dxe:ComboBoxEdit.StyleSettings>
<dxe:CheckedComboBoxStyleSettings />
</dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>
The mode object: RadioComboBoxStyleSettings.
<dxe:ComboBoxEdit ItemsSource="{Binding Cities}">
<dxe:ComboBoxEdit.StyleSettings>
<dxe:RadioComboBoxStyleSettings />
</dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>
The mode object: TokenComboBoxStyleSettings.
<dxe:ComboBoxEdit ItemsSource="{Binding Cities}">
<dxe:ComboBoxEdit.StyleSettings>
<dxe:TokenComboBoxStyleSettings />
</dxe:ComboBoxEdit.StyleSettings>
</dxe:ComboBoxEdit>
The mode object: CheckedTokenComboBoxStyleSettings.
<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