Regarding Listbox to ListView migration.
Hello.
I have a Listbox I add entries like this to:
1;content
Where 1 is always an int and content is always a string. I can access each one seperately.
Now I want the result to be sorted descendingly, ie:
1;content
4;content2
2;content3
=>
4;content2
2;content3
1;content
As this doesn't look good, I want to use a Listview instead. Like this:
Frequency | Content
===============
4 | content2
2 | content3
1 | content
Problem is, the tabular property does not seem to exist, all entries are being put in like symbols in a listview in explorer. Also I have problems "reaching" the 2nd column(content), ie I only see 4,2,1.
How would I prepare and populate a listview in c# .net 4 for that?
See Question&Answers more detail:os