To add items to column 1 in my listView control (Winform) I'm using listView1.Items.Add, this works fine but how do I add items to columns 2 and 3 etc? It's the first time I've used listView.
Thanks
|
|
There are several way to do it, but here is one solution (for 4 columns).
And a more verbose way is here:
|
||||
|
|
|
You can add items / sub-items to the ListView like:
But I suspect your problem is with the View Type. Set it in the designer to Details or do the following in code:
|
|||||
|
|
Here is the msdn documentation on the listview object and the listviewItem object. I would highly recommend that you at least take the time to skim the documentation on any objects you use from the .net framework. While the documentation can be pretty poor at some times it is still invaluable especially when you run into situations like this. But as James Atkinson said it's simply a matter of adding subitems to a listviewitem like so:
|
||||
|
|
|
|||
|
|
|
For your problem use like this:
|
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.