Inno Setup:调整卸载进度表图像的大小

Inno Setup: Resize uninstall progress form image

如何将卸载的 WizardSmallBitmapImage 调整为这些尺寸?

Left := ScaleX(0);
Width := ScaleX(500);
Height := ScaleY(60);

InitializeUninstallProgressForm event function 中设置此项。

procedure InitializeUninstallProgressForm();
begin
  with UninstallProgressForm do
  begin
    WizardSmallBitmapImage.Left := ScaleX(0);
    WizardSmallBitmapImage.Width := MainPanel.Width;
    WizardSmallBitmapImage.Height := MainPanel.Height;

    PageDescriptionLabel.Visible := False;
    PageNameLabel.Visible := False;
  end;
end;