Putting images in a listview in a second or third column is more effort than it's worth. I would suggest creating your own custom control that behaves like a listview and displays the images how you would like them.
Create your customListViewItem (Usercontrol with Images)
Create your customListView (Panel)
When you want to add your customListViewItem to the customListView, use a method like:
public void AddItem(customListViewItem item)
{
item.Dock = DockStyle.Top;
this.Controls.Add(item);
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.