我使用以下代码在InnoSetup中显示背景图像,
procedure InitializeWizard();
var
BackgroundImage: TBitmapImage;
begin
BackgroundImage := TBitmapImage.Create(MainForm);
BackgroundImage.Parent := MainForm;
BackgroundImage.SetBounds(0, 0, MainForm.ClientWidth, MainForm.ClientHeight);
BackgroundImage.Stretch := True;
BackgroundImage.Bitmap.LoadFromFile(ExpandConstant('C:\image.gif'))
end;
但这对GIF动画图片无效。 InnoSetup有没有办法在后台显示GIF图像或循环显示位图图像?