1.固定赋值
//string[] cklist= { "仓库1", "仓库2", "仓库3" }; //添加3个字符串数据
//comboBox1.Items.AddRange(cklist); //将字符串数组添加至comboBox1.Items属性中
//comboBox1.SelectedIndex = 1; //设置当前选中项的索引为1
示例:
2.数据库查询赋值
DataTable dtdata = hrp.GetCKList();//查询数据库的方法获取的数据表格
foreach(DataRow dr in dtdata.Rows)
{
this.comboBox2.Items.Add(dr["仓库名称"].ToString());
}
this.comboBox2.SelectedIndex = 0; //设置当前选中项的索引为0
示例: