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物件