我已经知道如何使用 c# 代码填充组合框,但是,有没有办法在设计时使用设计器/属性填充组合框?
问问题
2080 次
2 回答
2
转到组合框的属性资源管理器或按 F4 找到 Items 属性。请参考下图。
希望能帮助到你。
于 2013-02-01T09:44:08.153 回答
1
见丹回答:
var items = new BindingList<KeyValuePair<string, string>>();
items.Add(new KeyValuePair<string, string>("Mpost", "Posted"));
items.Add(new KeyValuePair<string, string>("Call", "Calling"));
items.Add(new KeyValuePair<string, string>("RScan", "Re-Scan"));
myComboBox.DataSource = items;
myComboBox.ValueMember = "Key";
myComboBox.DisplayMember = "Value";
于 2013-02-01T09:34:31.413 回答