在VB.net中: 使用combobox1.items.add(name)将附加组合框项目。但我希望看到组合框列表,最后添加的项目在第一个。截至目前,我正在将项目移动到数组,然后使用for循环将值从最后移动到第一个。有一个简短的方法吗?
代码:
For i As Integer = (RC_Array.Length - 1) To 0 Step -1
RC_Combobox.Items.Add(RC_Array(i)) 'Move the last value first
Next
答案 0 :(得分:3)
您可以使用ComboBox.Items.Insert(0,Item)
在组合框的第一个插槽中插入项目。