Delimiter Support in WPF ComboBox

18 Nov 20181 minute to read

A delimiter string in a ComboBox is the string displayed between the selected items in the ComboBox. You can customize this string by using the SelectedValueDelimiter property. The default value is "-" (hyphen).

Property Description Type Data Type Reference links
SelectedValueDelimiter The selected items can be separated by the given string. Dependency Property String NA

Adding delimiter string customization to an application

Delimiter string customization can be added directly to an application using the following code snippet.

<syncfusion:ComboBoxAdv SelectedValueDelimiter="#"></syncfusion:ComboBoxAdv>
ComboBoxAdv comboBox = new ComboBoxAdv();     
comboBox.SelectedValueDelimiter = "#";

ComboBox_img11