如何将项目从列表框添加到另一个列表框?

时间:2015-10-21 02:56:55

标签: vb.net

我知道从文本框到列表框你可以使用类似的东西:

listBox1.Items.Add(textBox1.Text)

但是如何在两个列表框之间工作呢?感谢。

1 个答案:

答案 0 :(得分:0)

假设SelectionMode设置为One,并且您想复制所选项目:

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    If ListBox1.SelectedIndex <> -1 Then
        ListBox2.Items.Add(ListBox1.SelectedItem)
    End If
End Sub

如果您想移动所选项目,则:

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    If ListBox1.SelectedIndex <> -1 Then
        ListBox2.Items.Add(ListBox1.SelectedItem)
        ListBox1.Items.RemoveAt(ListBox1.SelectedIndex)
    End If
End Sub