1.写死的数据
this.cbType.SelectedIndex = 1;
//或者
this.cbType.SelectedIndex = this.cbType.Items.IndexOf("葡萄");
2.绑定数据的
List list = new List() //随便实例化几个值
{
new producttype(){ Id=1,Name=“LOL”},
new producttype(){ Id=2,Name=“CF”},
new producttype(){ Id=3,Name=“WOW”}
};
//comboBox 的name 为 cbType
this.cbType.DataSource = list; //绑定数据
this.cbType.DisplayMember = “Name”; //comboBox下拉要显示的文本值
this.cbType.ValueMember = “Id”; //comboBox下拉的value值
producttype pp = list.Where(s => s.Id == 2).FirstOrDefault();//条件筛选 id=要默认显示的值的id
//或者 producttype pp = list.Where(s => s.Name == “要默认显示的文本”).FirstOrDefault();
this.cbType.SelectedIndex = this.cbType.Items.IndexOf(pp);
//因为绑定数据的时候绑定的是一个List(producttype) 所以在查找的时候要用producttype对象