I am using C#.net with 3.5 frame work.
I have a form having a listview and imagelist controls. i am adding images from a folder to imagelist and then from imagelist to listview.
This is working fine and show images, However how can i show the image names too.
I am using C#.net with 3.5 frame work. I have a form having a
Share
I guess you want to set the View property:
ListView.LargeIconfor instance displays the image with a label below it.Also, if you’re going to work with ListViews, I’d suggest you look into ObjectListView, it’s very flexible and allows you to develop more beautiful listview controls.