问题描述
stringtypename="广州/上海/北京";string[]sarray=typename.Split('/');foreach(stringiinsarray)this.listbox.DataSource=sarray;this.listbox.DataBind();我用这段代码绑定listbox,数据是绑进去了,但不是选中的状态,如何才能让listbox里面的数据默认全部选中呢??
解决方案
解决方案二:
绑定后再一个for循环ListItemSelected=true不是一样的嘛
解决方案三:
this.listbox.SelectedIndex=0;
解决方案四:
//全选方法一和全不选privatevoidSelectAll(ListBoxListBox,boolb)...{for(inti=0;i<ListBox.Items.Count;i++)...{ListBox.SetSelected(i,b);}}
时间: 2024-10-25 18:09:56