0

我想知道是否有可能有两个按钮来更改组合框“上一个”或“下一个”的当前选定项目。所以我会有两个按钮:next和back,当你点击next时,combobox中的选中项会变为列表中的下一个(1 -> 2),如果你点击back,它会返回到上一项 (1 <- 2)。提前致谢,

4

1 回答 1

1

就像是...

Private Sub btnUp_Click(sender As System.Object, e As System.EventArgs) Handles btnUp.Click
    If ComboBox1.SelectedIndex > 0 Then
        ComboBox1.SelectedIndex = ComboBox1.SelectedIndex - 1
    End If
End Sub

Private Sub btnDown_Click(sender As System.Object, e As System.EventArgs) Handles btnDown.Click
    If ComboBox1.SelectedIndex < ComboBox1.Items.Count - 1 Then
        ComboBox1.SelectedIndex = ComboBox1.SelectedIndex + 1
    End If
End Sub
于 2013-11-03T20:03:13.220 回答