【悬赏】C# winform 多个combobox 下拉列表过滤重复值
<----- 这里是图片样式有一张表:类型type,属地place,金额price,从数据库里提取数据赋值给comboBox类型type,属地place,金额price;且每个下拉列表的内容不重复[类型type,属地place,金额price]
有没有更好的方法,要代码。。。。!!!!!!!!!!!!
程序代码:
private void Form1_Load(object sender, EventArgs e) { SqlConnection conn = new SqlConnection(connStr); SqlCommand cmd = new SqlCommand("select distinct type from ExchangeCard group by type", conn); price.Items.Add("20"); price.Items.Add("30"); price.Items.Add("50"); price.Items.Add("100"); place.Items.Add("全国"); conn.Open(); SqlDataReader dr = cmd.ExecuteReader(); while (dr.Read()) { type.Items.Add(dr["type".ToString()]); } dr.Close(); } private void type_SelectedIndexChanged(object sender, EventArgs e) { }
[ 本帖最后由 子墨蓝心 于 2010-12-7 14:15 编辑 ]