Using: Delphi XE2; VCL Forms application
Is it possible to draw transparent GIF images on an ActionToolbar (with ActionManager) using TImageList?
I have been trying but what I get is a black background on the toolbuttons.
The GIF images are 256 colors; and have transparency (verified by opening the images in Corel PaintShopPro).
On the ImageList, I have set the properties:
ColorDepth := cd32bit, DrawingStyle := dsTransparent.
Screen captures of the form at design-time and run-time:
Any tips or workaround is appreciated!
cd32bit
is wrong, as isdsTransparent
. There's no alpha channel here. FWIW, GIF is the wrong format for these images. You want 32bpp with alpha channel. – David Heffernan