如何搜索列表框并将所有结果保存在另一个列表框中?

时间:2012-01-27 05:57:46

标签: vb.net

现在,我正在使用此代码,但它没有给我我想要的东西.. 例如,我想列出所有带有字符串" 1"

的项目
Dim x, count As Integer
x = ListBox1.Items.Count
count = 0


Do While count < x
    If ListBox1.SelectedIndex = ListBox1.FindString("1") Then

        ListBox2.Items.Add(ListBox1.Items(count))

    End If
    count = count + 1
Loop

1 个答案:

答案 0 :(得分:0)

试试这个。

foreach (string s in listBox1.Items)
      {
        if(s.contains("1"))
        listbox2.add(s);
      }