关于listbox是否选中的问题 急急在线等
if(ListBox1.SelectedIndex!=-1 && ListBox2.SelectedIndex==-1 && ListBox3.SelectedIndex==-1){
}
else if(ListBox1.SelectedIndex!=-1 && ListBox2.SelectedIndex!=-1 && ListBox3.SelectedIndex==-1)
{
}
else if(ListBox1.SelectedIndex!=-1 && ListBox2.SelectedIndex!=-1 && ListBox3.SelectedIndex!=-1)
{}
我选中的是二级老是执行一级的我想请问一下判断listbox是否被选中是怎么样??
--------------------编程问答-------------------- ListBox2.Focus() --------------------编程问答-------------------- if (this.listBox1.SelectedItems.Contains(...))
{
} --------------------编程问答-------------------- ListBox是否有被选中的Item,就是使用SelectedIndex来判断,如果未选中任何一个Item则SelectedIndex就是-1;否则为Item的索引. --------------------编程问答-------------------- 所以你使用ListBox.SelectedIndex判断是对的,可能是你的if语句写的有问题. --------------------编程问答-------------------- 找到了答案了
原来我是用无刷新的要
Request.Form["ListBox1"]!=null才可以
谢谢大家参与希望以后都交流 --------------------编程问答-------------------- 我晕啊......
楼主要先说明是ASP.NET中的,还是Windows应用程序中的ListBox才行!
两者一天一地,相差甚远! --------------------编程问答-------------------- 学习
补充:.NET技术 , C#