Dim cListItems As New System.Collections.Generic.List(Of Combobox_values)
                If ds.Tables("items_prices").Rows(0).Item("item_selldozen") > 0 Then
                    Dim item_selldozen As String = ds.Tables("items_prices").Rows(0).Item("item_selldozen")
                    cListItems.Add(New Combobox_values("Dozen", item_selldozen))
                End If

                Dim dgvcbc As DataGridViewComboBoxCell = DirectCast(CType(main.ActiveMdiChild, discount_new_discount).discountitems_new_discount.Rows(last_row).Cells(3), DataGridViewComboBoxCell)
                dgvcbc.DataSource = cListItems 'Fill cListItems
                dgvcbc.DisplayMember = "Text"
                dgvcbc.ValueMember = "Value"

我需要做的就是为组合框添加一个处理程序以选择第一个填充的值。

有人有主意吗?

最佳答案

只需使用源中的第一项设置值。

dgvcbc.Value = cListItems(0)

10-04 14:39