【发布时间】:2020-05-25 15:37:27
【问题描述】:
如何将卸载的WizardSmallBitmapImage 调整为这些尺寸?
Left := ScaleX(0);
Width := ScaleX(500);
Height := ScaleY(60);
【问题讨论】:
标签: resize inno-setup
如何将卸载的WizardSmallBitmapImage 调整为这些尺寸?
Left := ScaleX(0);
Width := ScaleX(500);
Height := ScaleY(60);
【问题讨论】:
标签: resize inno-setup
在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;
【讨论】: