Hi!
I've got different pictures in a TadvSmoothListBox. I want so make
clFuchsia the Transparency Color, like it usually works with TImage /
TPicture
But this does not seem to do the trick:
a: TAdvSmoothImageListBox;
for i := 0 to a.Items.Count - 1 do begin
a.Items.Items.Caption.Text := a.Items.Items.FileName;
a.Items.Items.Image.TransparentMode := tmAuto; // or tmFixed / doesn't matter
a.Items.Items.Image.Transparent := True;
a.Items.Items.Image.TransparentColor := clFuchsia;
end;
Transparency works fine for like .png files with transparency information stored. But how can i do this with bmps?
Thanks!