Checkbox in listview control

后端 未结 8 1693
既然无缘
既然无缘 2020-12-20 13:20

Can you have a multicolumn listview control where one of the columns is a checkbox? Example code or links would be greatly appreciated.

I am using visual studio 200

8条回答
  •  不思量自难忘°
    2020-12-20 13:31

    You can set the the CheckBoxes property to true. In code this can be done like this:

    listView1.CheckBoxes = true;
    

提交回复
热议问题