InnoSetup - GIF背景图片?

时间:2018-04-29 18:47:29

标签: inno-setup animated-gif pascalscript

我使用以下代码在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图像或循环显示位图图像?

0 个答案:

没有答案
相关问题