I want to check about 3000 item in listview. This is a bit of code :
listview
foreach (ListViewItem item in this.lvItem.Items) { item.Checked = !item.Ch
for (int i = 0; i <= listView1.Items.Count - 1; i++) { if (!listView1.Items[i].Checked) listView1.Items[i].Checked = true; }