0

任何人都知道如何将进度条的百分比放在进度条下方

例如:在 photoshop inno setup 5.5.1-unicode+Script ISDone 0.6 中编辑的图像谢谢

在此处输入图像描述

4

1 回答 1

1

如果您想在安装 向导页面上放置百分比标签,那么我认为这是不可能的。但是您可以使用CreateOutputProgressPage来控制进度条,并且可以通过 Pascal 脚本添加百分比标签。

[Code]
procedure InitializeWizard();
var
  Page: TOutputProgressWizardPage;
  PercentLabel: TLabel;
begin
  Page := CreateOutputProgressPage('Caption', 'Description');
  Page.ProgressBar.Show;
  PercentLabel := TLabel.Create(Page);
  PercentLabel.Top := Page.ProgressBar.Top + 20;
  PercentLabel.Caption := '0%';
  ...
end;

另请阅读此问题:Inno Setup Simple progress page for Run section。它演示了如何控制进度。

于 2012-11-07T13:38:40.670 回答