【问题标题】:Inno Setup: Resize uninstall progress form imageInno Setup:调整卸载进度表单图像的大小
【发布时间】:2020-05-25 15:37:27
【问题描述】:

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

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

【问题讨论】:

    标签: resize inno-setup


    【解决方案1】:

    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;
    

    【讨论】:

      猜你喜欢
      • 2023-04-03
      • 1970-01-01
      • 2019-11-05
      • 1970-01-01
      • 2013-03-28
      • 2012-11-16
      • 2018-05-04
      • 2013-03-28
      • 2016-09-27
      相关资源
      最近更新 更多