c# listbox1获取所有选中项目的索引
时间: 2024-02-24 12:54:37 浏览: 139
c# 的索引
获取ListBox中所有选中项的索引,可以使用SelectedIndices属性。SelectedIndices属性返回一个ListBox.SelectedIndexCollection对象,该对象包含了ListBox中所有选中项的索引。
下面是一个获取ListBox中所有选中项的索引的示例代码:
```
// 获取ListBox中所有选中项的索引
private void button1_Click(object sender, EventArgs e)
{
// 获取选中项的索引
ListBox.SelectedObjectCollection selectedItems = listBox1.SelectedItems;
// 获取选中项的索引
ListBox.SelectedIndexCollection selectedIndices = listBox1.SelectedIndices;
// 遍历选中项的索引
foreach (int index in selectedIndices)
{
Console.WriteLine("选中项的索引为:" + index);
}
}
```
在上面的示例代码中,我们首先使用SelectedItems属性获取所有选中项的对象集合,然后使用SelectedIndices属性获取所有选中项的索引集合,最后使用foreach语句遍历选中项的索引并输出到控制台。
阅读全文