问题描述
stringtypename="广州/上海/北京";string[]sarray=typename.Split('/');foreach(stringiinsarray)this.listbox.DataSource=sarray;this.listbox.DataBind();我用这段代码绑定listbox,数据是绑进去了,但不不是选中的状态,如果修改能让listbox里面的数据默认全部选中呢??
解决方案
解决方案二:
改用checkedListBox控件
解决方案三:
//确认listbox的选择模式为多行,遍历选中listbox的所有行this.listbox.DataSource=sarray;this.listbox.DataBind();listbox.SelectionMode=SelectionMode.MultiExtended;for(inti=0;i<listbox.Items.Count;i++){listbox.SetSelected(i,true);}
时间: 2024-09-10 07:38:58