Skip to main content

ComboBoxEdit

You can change the operation mode of a combo box editor by using the BaseEdit.StyleSettings property. To apply specific settings, assign the BaseEdit.StyleSettings property of a combo box editor to one of the objects listed in the table below.

Operation Mode

Settings object

Description

Simple item list combo box

ComboBoxStyleSettings

Standard combo box. This is the default operation mode.

ComboBoxEditStyleSettingsDefault

Checked combo box

CheckedComboBoxStyleSettings

Checked item list. Allows multiple item selection.

ComboBoxEditStyleSettingsChecked

Radio button combo box

RadioComboBoxStyleSettings

A list with radio buttons next to the items. Allows single item selection.

ComboBoxEditStyleSettingsRadio

Token combo box

TokenComboBoxStyleSettings

Item list that allows multiple item selection. Selected items are represented by tokens.

ComboBoxEditStyleSettingsToken

Checked token combo box

CheckedTokenComboBoxStyleSettings

Checked item list. Allows multiple item selection. Selected items are represented by tokens.

ComboBoxEditStyleSettingsCheckedToken

Refer to the following KB article for more information: How to implement multi-select in DevExpress WPF Data Editors (ComboBoxEdit, LookUpEdit, ListBoxEdit).

See Also