Skip to content

DevExpress-Examples/wpf-comboboxedit-create-a-checked-combobox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WPF ComboBoxEdit - Create a Checked ComboBox

This example demonstrates how to create a checked combo box. To do this, set the editor's StyleSettings property to CheckedComboBoxStyleSettings:

<dxe:ComboBoxEdit.StyleSettings>
   <dxe:CheckedComboBoxStyleSettings />
</dxe:ComboBoxEdit.StyleSettings>

image

When you enable multiple selection in the ComboBoxEdit, its EditValue property must contain an object of the List<object> type. In this example, the SelectedItemsConverter converts the collection of selected Customers to List<object> and back.

Files to Review

Documentation

More Examples