我有一个带有组合框控件的数据网格控件。以下是示例代码:
Dim cbCell As DataGridViewComboBoxCell
...
n = myGridView.RowCount - 1
For i = 0 to n
cbCell = Me.myGridView.Rows(i).Cells(6)
cbCell.DataSource = ' data source varies depending on rows
cbCell.DisplayMember = "name"
cbCell.ValueMember = "name"
Next
我遇到的问题是组合框始终显示为空值(空字符串),除非我单击组合框并选择要显示的项目。
我需要将第一项(下拉列表的)设置为每一行的默认值。由于组合框的数据源不同,因此显示的默认项可能不同。