我有一个组合框,它读取一个目录并在组合框中显示文件名。我想要做的是当在组合框中选择一个值时,我希望在标签中显示它。
我试过以下
Label1.Text = Combobox1.SelectedValue
但这似乎不起作用。
我在组合框中显示值的编码
With Combobox1
.DisplayMember = "Name"
.ValueMember = "FullName"
.DataSource = New IO.DirectoryInfo("Path").GetFiles().Select( _
Function(fi) New With {.Name = IO.Path.GetFileNameWithoutExtension( _
fi.FullName), fi.FullName}).ToArray()
End With
我在 Combobox1_SelectedIndexChanged 事件中有第一个编码片段。
当我在组合框中选择一个值但我想在 label1.text 中显示“名称”时,“全名”与 textbox1 一起使用