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"
You must create your own class type and override the ToString() method to return the text you want. Here is a simple example of a class you can use:
The following is a simple example of its usage: