1

在我的表单上,我有一个带有一些 DataGridViewComboBoxColumns 和一些 ComboBoxes 的 DataGridView。DataGridView 绑定到一个 BindingSource,并且每个 ComboBoxes 的 SelectedItem 属性都绑定到 DataGridView 中的相应列。DataGridViewComboBoxColumns 和 ComboBoxes 对具有相同的项目数据源。

预期的行为是,当我更改网格中的行时,组合框应该反映相应列和新选择的行的值。发生的情况是 ComboBoxes 根据先前选择的行(即落后一步)发生变化,导致新选择的行的 DataGridViewComboBoxColumns 是最后一个的克隆。

我在其他此类对上具有相同的功能,不同之处在于它们的 DataSource 绑定到数据库,而是使用 SelectedValue 属性。

4

1 回答 1

1

通过使用 SelectedValue 属性而不是 SelectedItem 解决。为了能够使用此属性,必须设置 ComboBox 的 .ValueMember,因此我必须使用具有属性的对象,而不是 ComboBox 项列表中的简单字符串。我创建了一个类:

Public Class ComboItem
    Private cText As String
    Private cValue As Object
    Public Sub New(ByVal text As String, ByVal value As Object)
        Me.cText = text
        Me.cValue = value
    End Sub
    Public Sub New(ByVal text As String)
        Me.cText = text
        Me.cValue = text
    End Sub

    Public Property value() As Object
        Get
            Return cValue
        End Get
        Set(ByVal value As Object)
            cValue = value
        End Set
    End Property

    Public Property text() As String
        Get
            Return cText
        End Get
        Set(ByVal value As String)
            cText = value
        End Set
    End Property
End Class

并像这样设置绑定:

Dim itemList As List(Of ComboItem) = New List(Of ComboItem) From {New ComboItem("", DBNull.Value),
                                                                  New ComboItem("Item 1"),
                                                                  New ComboItem("Item 2")}

Dim bindingSource As BindingSource = New BindingSource
bindingSource.DataSource = itemList
ComboBox1.DataSource = bindingSource
ComboBox1.DisplayMember = "text"
ComboBox1.ValueMember = "value"
dataGridViewTextBoxColumn.DataSource = bindingSource
dataGridViewTextBoxColumn.DisplayMember = "text"
dataGridViewTextBoxColumn.ValueMember = "value"

我从设计器中设置了 SelectedValue 绑定,但代码看起来像这样:

ComboBox1.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", dataGridViewBindingSource, "ColumnName", True))

这个答案实际上更像是一种解决方法,因为据我所知, SelectedItem 方法应该以相同的方式工作(如果我错了,请纠正我!)。

于 2013-06-21T09:15:27.777 回答