Im trying to create a listview showing images with text
so how exactly can i do this? (im using visual studio if it helps)
Heres the code that isn't working now
// adding images ...
imageList1.Images.Add("Unique key", Image.FromFile("..."));
listView1.Items.Add("text for image", "Unique key");
/*
* more
* images
*
* */
listView1.LargeImageList = imageList1;
i also tried inserting listView1.LargeImageList = imageList1; before adding the images.
how can make this listview show images with text the way i want?