我有一个包含世界上所有国家的组合框。 我的问题是如何在程序启动时将“英格兰”显示在组合框上。
我知道我可以使用下面的代码获取国家/地区的索引,但不知道如何显示所选国家/地区。
int index = cmbCountry.Items.IndexOf(address.Country);
答案 0 :(得分:3)
cmbCountry.SelectedIndex = index;
答案 1 :(得分:2)
cmbCountry.SelectedValue = "England";