Hi,
Am using listview control in my c# windows application.is it possible to put a checkbox inside this listview for each and evreyrow.if so please give me the sample.
Thanks and Regards
Arul.P
Loading
Hi,
Am using listview control in my c# windows application.is it possible to put a checkbox inside this listview for each and evreyrow.if so please give me the sample.
Thanks and Regards
Arul.P
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
AlanPosted Jun 5, 2007, 10:01 AM
listView1.CheckBoxes = true;
By creating a handler for the ItemCheck event, you can then receive notification when an item has been checked or unchecked.
The CheckedItems property gets a collection of all the checked items in the ListView and the CheckedIndices property gets their indices.