当前位置:编程学习 > C#/ASP.NET >>

数组绑定listbox,如果让绑定的字段默认选中呢?

string typename ="广州/上海/北京";
string[] sarray=typename.Split('/');
foreach(string i in sarray)
this.listbox.DataSource=sarray;
this.listbox.DataBind();
我用这段代码绑定listbox,数据是绑进去了,但不是选中的状态,如何才能让listbox里面的数据默认全部选中呢?? --------------------编程问答-------------------- 绑定后再一个for循环 ListItem Selected=true 不是一样的嘛 --------------------编程问答--------------------
    this.listbox.SelectedIndex = 0;
--------------------编程问答--------------------
//全选方法一和全不选  
      private void SelectAll(ListBox ListBox,bool b)  
      ...{  
          for (int i = 0; i < ListBox.Items.Count; i++)  
          ...{  
              ListBox.SetSelected(i, b);  
          }  
      }
补充:.NET技术 ,  VC.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,