I want to load a PNG with transparent background in a TImageList and use it in a TMainMenu (via TAction).
However, in Delphi the background is just black. Is PNG support onl
Set the following property values for TImageList: DrawingStyle: dsTransparent ColorDepth: cd32Bit
Application->Enable runtime themes:= true; (Proj Settings).
Update for Delphi Rio:
TImageList must have:
The images can be loaded from a PNG with transparent bkg color.
Note: Editing some properties of TImageList will delete (without any notice) all existing images in your list. Backup your images first.