Hi
In ASP.NET
I can have ListBox with text and Value
for example I can Add
ListBox lst=new ListBox();
ListBox.Items.Add(new ListItem("US", 1));
ListBox.Items.Add(new ListItem("UK", 2));
How can I do the same with Windows Application??????????????
Thank you