在VB中,你可以使用以下代码来删除List中选中的项:
If ListBox1.SelectedIndex <> -1 Then ListBox1.Items.RemoveAt(ListBox1.SelectedIndex) End If
上面的代码首先检查ListBox中是否有选中的项(索引不为-1),然后使用RemoveAt方法删除选中的项。请确保将代码放在触发删除操作的事件中,例如按钮点击事件。
RemoveAt