Control to Display Pictures

Bernie

Well-known member
Joined
Aug 13, 2007
Messages
98
Programming Experience
3-5
I'm working on an applicaiton where I need to display a series of images for the user to scroll through. The images are digitized signatures and the user needs to select one of them.

Is there a list box like control that will hold images?

Thanks for any suggestions.

Bernie
 
I would use a series of PictureBoxes and you could have RadioButton below or next to each picture for them to select one.
 
That could work for a couple of images, but during busy periods there could be 50 to 60 images for the user to scroll through.

Is there a scrollable contain that will hold picture boxes?

Bernie
 
you could use a ListView control for this, I'm not sure which properties you'd want to set for this, but ListViews are used for displaying filenames/foldernames with their icons (pictures)

you could do the same this way, it would be scrollable as well
 
There is also DataGridView control that has image column.
 
Back
Top