Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to created a display which combines CheckedListBox and detailed ListView?

I am trying to create something like this:

enter image description here

This example creates view using a tabbing as spacing between entry. The flaw about it is that I might experience too long entries which I don't know how it might behave in my situation.

How can I create something similar in C#? I wanted to use ListView, but then I need a check box also, so I tried CheckedListBox, but then I can not create columns.

How can I create something that is a combination of two?

like image 266
HelpNeeder Avatar asked Dec 21 '22 05:12

HelpNeeder


1 Answers

what is the problem in using a ListView for which you enable the Checkboxes?

ListView.CheckBoxes Property

like image 69
Davide Piras Avatar answered Jan 04 '23 23:01

Davide Piras