我有一个带有两个DataGridViewComboBoxColumns的DataGridView。我想使用第一列中的选定项来触发第二列中每个行的项目的重新填充。
这是我到目前为止的代码。 “addlInfoParentCat”标识第一列,currentRow.Cells.Item(1)是我想要重新填充的DataGridViewComboBoxCell。 ExtEventAdditionalInfoType是我定义的包含字符串/值对的类型。
Private Sub dgvAdditionalInfo_CellValueChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles dgvAdditionalInfo.CellValueChanged
Dim currentCell As DataGridViewCell
currentCell = Me.dgvAdditionalInfo.CurrentCell
If Not currentCell Is Nothing Then
If currentCell.OwningColumn.DataPropertyName = "addlInfoParentCat" Then
Dim parentTypeID As Integer = currentCell.Value
Dim currentRow As DataGridViewRow = Me.dgvAdditionalInfo.CurrentRow
Dim subtypeCell As DataGridViewComboBoxCell = currentRow.Cells.Item(1)
Dim theChildren As New List(Of ExtEventAdditionalInfoType)
theChildren = Custom_ExtEventAdditionalInfoType.GetChildrenOfThisParentOrderByTypeName(parentTypeID)
subtypeCell.DataSource = Nothing
subtypeCell.DataSource = theChildren
subtypeCell.DisplayMember = "ExtEventAdditionalInfoTypeDescr"
subtypeCell.ValueMember = "ID_ExtEventAdditionalInfoType"
End If
End If
End Sub
基本上我看到的是第一次绑定很有效。当我在第一列中选择一个项目时,它会在第二列中正确填充项目。我可以向DataGridView添加行并重复该过程。
当我尝试在第二列已绑定后更改第一列项时,问题就出现了。我得到了一系列无限的对话框,其中包含以下内容:
System.ArgumentException:DataGridViewComboBoxCell值无效。
知道为什么会这样吗?提前谢谢!
更新 CodeByMoonlight的建议似乎有效。
我在重新绑定之前清除了DataGridViewComboBoxCell的值:
....
subtypeCell.DataSource = Nothing
subtypeCell.Value = Nothing 'here's the change
subtypeCell.DataSource = theChildren
....
答案 0 :(得分:2)
好吧,看起来只要你重新修改第一个组合的值,就会使用于填充第二个组合的绑定和数据源失效,从而导致所有错误。