У меня есть ListView, который показывает изображения из ImageList.Теперь хотел получить индекс всех проверенных изображений в ListView.
List<int> list = new List<int>(); // in list index of all checked images on clicking button should be saved.
private void button2_Click(object sender, EventArgs e)
{
ListView.CheckedListViewItemCollection checkedItems = lstview1.CheckedItems;
foreach (ListViewItem item in checkedItems)
{
list.add[// How can i get index of checked item ];
}
}