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 that source ready in my program... how can I do something like this:
combo1.Item[1] = "DisplayText"; combo1.Item[1].Value = "useful Value"