Selection Box Template
The selection box template allows you to define a DataTemplate for the selected item, thus customizing the Selection Box part of RadComboBox.
This feature is available only with Non-Editable RadComboBox. This is when the IsEditable property of the control is set to False (default value). To customize the Input Area part of an editable RadComboBox, use the TextBoxStyle property.
To set the custom DataTemplate, set the SelectionBoxTemplate property of RadComboBox. The following example shows how to set up a combobox and define a selection box template.
Example 1: Setting up the model
Example 2: Setting up the data
Example 3: Setting the SelectionBoxTemplate
Multiple Selection Box Template
To customize the Selection Box part of RadComboBox when multiple selection is enabled, set the MultipleSelectionBoxTemplate property, instead of SelectionBoxTemplate. Read more about this in the Multiple Selection article.
Empty Selection Box Template
To customize the Selection Box when there is no selected item, set the EmptySelectionBoxTemplate
Example 4: Setting the EmptySelectionBoxTemplate
The SelectionBoxTemplate, EmptySelectionBoxTemplate and MultipleSelectionBoxTemplate properties are applied only when the ItemsSource property of RadComboBox is set.