ComboBox: Adding Text and Value to an Item (no Binding Source)

In C# WinApp, how can I add both Text and Value to the items of my ComboBox?
I did a search and usually the answers are using “Binding to a source”.. but in my case I do not have a binding source ready in my program…
How can I do something like this:

combo1.Item[1] = "DisplayText";
combo1.Item[1].Value = "useful Value"

21 Answers
21

Leave a Comment