vote up 0 vote down star

i have an image that contains a series of images, e.g.:

alt text

In the olden days, i would load the image into the ImageList common control using such API calls as:

What is the .NET method of achieving the same result with the .NET ImageList class?


Note: The image is only an example. My actual image is a traditional toolbar image list image, with 179 16x16 button images.

flag

56% accept rate

2 Answers

vote up 2 vote down check

It sounds like you're trying to add several images included in a single image object. In this case you'd want to use

imageList1.Images.AddStrip(imageSeries)

From the msdn docs: "A strip is a single image that is treated as multiple images arranged side-by-side"

link|flag
You are absolutely right, sir. In my defense such a concept doesn't exist in the Visual Studio designer (whereas a competing product has supported it for 14 years) – Ian Boyd Feb 5 at 14:32
vote up 4 vote down

What about using imageList1.Images.Add()?

link|flag
So crazy it just might work! – Chris Ballance Feb 5 at 1:08
Hey, it can't kill you right? – Jay Riggs Feb 5 at 3:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.