How to add value of combobox element in string collection editor in c #?

I can add the item and its value to the combo box with the following code.

combobox1.Items.add(new Item("text","value"));

How to add value to text in string collection editor? I can add text to the string collection editor.

+3
source share
1 answer

I am afraid that you can only specify text using the built-in Visual Studio editor.

+7
source

Source: https://habr.com/ru/post/1715250/


All Articles