我知道从文本框到列表框你可以使用类似的东西:
listBox1.Items.Add(textBox1.Text)
但是如何在两个列表框之间工作呢?感谢。
答案 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