Image List

  • Thread starter Thread starter Curtis Wellborn
  • Start date Start date
C

Curtis Wellborn

Hey,
I was wondering if there is any way in the designer to put my
Icons(which i have 200 in three different folders) into an ImageList
with out doing it one by one in the add image. This will take me
forever and I dont know the capacity of the imageList so it could also
be a waste of time. If anyone can help please let me know.
Restate Queston:
I want to know how to put my folders in the imagelist without having
to do it one by one(in the designer view not in code)?
 
Curtis,

As of now, imagelist doesnt allow you to select multiple images.

For your case, you can try this

1. Include all the images in the project
2. Compile them as "Embedded Resource"
3. During runtime, read images from resources(have a generalized logic) and
add it to image list one by one.
4. Use the image list.
 
Back
Top