winfrom 中 comboBox 下拉如何选定默认值(写死的数据的或绑定的数据的)

   日期:2020-09-28     浏览:151    评论:0    
核心提示: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 produ

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对象

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服