In my projects I have several ListView .
I ListView I have Checked Boxes ( I have made the CheckBoxes property true in my ListViews.)
I can select multiple items in my ListView.
What i Want to do now is when i select multiple Items i want to marked those items CheckBoxes.

Thanks in advanced.

Recommended Answers

All 3 Replies

Check out these ListView methods:

public ListView.SelectedListViewItemCollection SelectedItems { get; }
//or
        public ListView.SelectedIndexCollection SelectedIndices { get; }

//with
        public bool ListViewItem.Checked { get; set; }

Thank you for the help.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.