我有三个控件:
ComboBox
:myobject列表
TextBox
:查看说明
DataSource
:list(of MyObject)
为MyObject:
属性ID为int
属性combodesctription as string
属性描述为字符串
我想在组合框中选择一个元素,并在TextBox中看到所选的对象描述。
我该怎么做?
答案 0 :(得分:0)
//On Combobox Selected Index Change
textbox1.text = Combobox1.Items(1).ToString()
答案 1 :(得分:0)
您可以处理ComboBox1的SelectedIndexChanged事件。
If Not IsNothing(ComboBox1.SelectedItem) Then
Dim obj As MyObject = CType(ComboBox1.SelectedItem, MyObject)
TextBox1.Text = obj.Description
End If