List<string>list=dal.GetName(room);
combobox.DataSource=list;
默认显示list的第一项
现在我想让它默认项为空
就在list头部添加了一个null的项
List<string>list=dal.GetName(room);
list.Insert(0,null);
combobox.DataSource=list;
combobox下拉框不显示了
要怎么处理呢?
List<string>list=dal.GetName(room);
combobox.DataSource=list;
默认显示list的第一项
现在我想让它默认项为空
就在list头部添加了一个null的项
List<string>list=dal.GetName(room);
list.Insert(0,null);
combobox.DataSource=list;
combobox下拉框不显示了
要怎么处理呢?