delphi IDE菜单中的图像是什么格式的?

时间:2011-05-19 01:13:25

标签: delphi delphi-2007 ota

我在Delphi IDE(Delphi 2007)的主菜单中添加了一个新条目,并将bmp图像添加到与菜单相关的图像列表中(不将掩码作为参数传递)

IDEMainMenu.Images.Add(Image,nil);

但添加的图像没有显示透明色,我尝试使用8和24位bmp并使用fucsia作为背景颜色,但ide始终显示带背景的图标。所以问题是which is the color depth of the bmp images which i must use and the color of the backgrpund to make appear the image transparent in the delphi ide menu?或者我需要将掩码bmp传递给Images.Add函数?

1 个答案:

答案 0 :(得分:5)

尝试使用图标格式(.ico),尺寸为16x16和256色。

这是我使用的代码,MainMenu是IDE菜单项的实例。

Image:=TIcon.Create;
try
 Image.Handle := LoadIcon(hInstance, sLogo16);
 ExplorerItem.ImageIndex:=MainMenu.Images.AddIcon(Image);
finally
  Image.Free;
end;

enter image description here