Answer: Set the
CheckBoxes property of the List View to true. It will display check boxes besides the items of the List View.
The CheckBoxes will automatically be displayed when we add rows to the ListView
by creating an instance of ListViewItem class.
ex:
ListViewItem z=new ListViewItem();
z.Text="csharp";
listView1.Items.Add(z);
|
Alert Moderator