问题描述
stringtypename="广州/上海/北京";string[]sarray=typename.Split('/');foreach(stringiinsarray)this.listbox.DataSource=sarray;this.listbox.DataBind();我用这段代码绑定listbox,数据是绑进去了,但不不是选中的状态,如果修改能让listbox里面的数据默认全部选中呢??
解决方案
解决方案二:
设定ListBoxSelectionMode属性为Multiplefor(inti=0;i<ListBox1.Items.Count;i++){ListBox1.Items[i].Selected=true;}
时间: 2024-09-18 04:38:46