我想让列表框首先包含所选索引,然后一次获取该项,该怎么做?
Dim Itemname
Itemname = lstShipper.SelectedIndex
我只想让项目引用索引。
因为该项目可能会更新..
答案 0 :(得分:1)
不确定你在问什么,但我猜你想在ListBox的索引发生变化时更新另一个控件。
ListBox.SelectedIndexChanged Event
从该事件中,您可以获得SelectedIndex和SelectedItem。
Dim curItem As String = listBox1.SelectedItem.ToString()
希望有所帮助。