I have a listview in c# with three columns and the view is details. I need to add a item to each specific column but I am having a hard time with this. I have t
listview
Simple one, just do like this..
ListViewItem lvi = new ListViewItem(pet.Name); lvi.SubItems.Add(pet.Type); lvi.SubItems.Add(pet.Age); listView.Items.Add(lvi);