以编程方式更改Datagridviewcombobox项目VB.NET

时间:2012-03-21 16:32:53

标签: vb.net datagridview combobox

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"

我需要做的就是为组合框添加一个Handler来选择填充的第一个值。

有人有想法吗?

1 个答案:

答案 0 :(得分:0)

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

dgvcbc.Value = cListItems(0)