我正在尝试检索存储在组合框的“ValueMember”属性中的值。我遵循了以下帖子中的建议:如何从 ComboBox C# Winforms 中获取 ValueMember 值?
不幸的是,它不起作用。下面是我的代码:
Private Sub LoadCategoryCombo()
Dim ds As New DataSet
ds = GetCategoryData()
If Not IsNothing(ds) Then
cmbCategory.DataSource = ds.Tables(0)
cmbCategory.DisplayMember = "category"
cmbCategory.ValueMember = "abbrev"
End If
End Sub
我想要做的是当我从下拉列表中选择一个值时,我希望显示存储在“ValueMember”字段中的值,但是,它只显示“abbrev”。我究竟做错了什么?
谢谢,