I have a list of objects. I want to add these items to a ListView. I'm trying to add each list item row wise but format is very bad, it should be in proper table type format.
List<string> lst = new List<string>(); lst.Add("John dsfsfsdfs " + "1" + 100); lst.Add("Smith sdfsdfsdfs" + "2" + 120); lst.Add("Cait dsffffffffffffffffffffff" + "3" + 97); lst.Add("Irene" + "4" + 100); lst.Add("Ben" + "5" + 100); lst.Add("Deniel jjhkh " + "6" + 88); foreach(string pl in lst) { listView1.Items.Add(pl); } Items are not visible and it should be in proper format.

ListViewcontrol can display items in several ways. For tabular view make sure you set the View property toDetailsListViewcontrol does not have any column headers specified and you set the View property toDetails, theListViewcontrol will not display any items.”