我的代码有问题,我想在form1上的listbox 5中的form2上搜索listbox4。
我使用了如下所示的代码:
int index= eski.listbox5.FindString(listbox4.ToString());
if(index= !=-1)
eski[enter image description here][1].listbox5.SetSelected(index ,true);
else
MessageBox.Show("Nothing Found")
程序找到真正的索引值,但设置选定的命令不起作用..
我该如何解决这个问题?
答案 0 :(得分:0)
listbox4.ToString()
只是将控件作为字符串返回。请致电listBox4.GetItemText(listBox4.SelectedItem)
。此外,第2行应为if (index != -1)