在VB中,你可以使用以下代碼來刪除List中選中的項(xiàng):
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.RemoveAt(ListBox1.SelectedIndex)
End If
上面的代碼首先檢查L(zhǎng)istBox中是否有選中的項(xiàng)(索引不為-1),然后使用RemoveAt
方法刪除選中的項(xiàng)。請(qǐng)確保將代碼放在觸發(fā)刪除操作的事件中,例如按鈕點(diǎn)擊事件。