使用Delphi XE在运行时将PNG图像添加到图像列表的方法如下:
var
Image: TPngImage;
begin
Image := TPngImage.Create;
try
Image.LoadFromFile('image.png');
ImageList.Add(Image, clNone);
finally
Image.Free;
end;
end;
在上面的代码中,我们首先创建了一个TPngImage对象,然后使用LoadFromFile方法将PNG图像文件加载到该对象中。接着,我们使用ImageList的Add方法将PNG图像添加到图像列表中。最后,我们释放了TPngImage对象。
注意:在使用上述代码之前,请确保已经在项目中添加了图像列表组件和PNG图像文件。
领取专属 10元无门槛券
手把手带您无忧上云