我用数据源填充了一个组合框,所有内容均按预期工作,但现在我需要清除每个组合框。我无法使用ComboBox.Items.Clear,因为我收到一条错误消息,说我在建立(翻译)DataSource属性时无法修改项目集合
ComboBox.Items.Clear 根据项目循环。计数并删除x个项目
这就是我填充组合框的方式!
Dim tabla_escenario_busqueda As New DataTable
tabla_escenario_busqueda = Capa_de_Logica.BuscarInfoPP(txt_id_requerimiento_escenario_ver.Text) 'Llenar el combo Box
txt_num_escenario_escenario_ver.DataSource = tabla_escenario_busqueda 'Se llena el combo box
txt_num_escenario_escenario_ver.DisplayMember = "numero_escenario"
'Fuente: https://stackoverflow.com/questions/17729770/how-do-i-bind-data-source-to-a-combobox