计算列表框中的选定项目

时间:2012-04-04 15:38:17

标签: vb.net listbox

如何计算列表框中所选值的数量,而不是列表框中的所有值?

我需要获取数字,然后将其设为字符串。一旦我有了数字,我可以轻松地将其更改为字符串

感谢

3 个答案:

答案 0 :(得分:2)

yourlistbox.SelectedItems.Count

答案 1 :(得分:2)

我使用ListBox1.GetSelectedIndices.Length

完成了这项工作

答案 2 :(得分:1)

您可以循环浏览列表框中的项目,如下所示:

    For Each item As ListItem In MyListBox.Items
        If item.Selected Then
           'Do something               
        End If
    Next