inno setup%百分比进度条

时间:2012-11-06 00:26:32

标签: inno-setup

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

例如:在photoshop中设置的编辑图像创建5.5.1-unicode +脚本ISDone 0.6谢谢

enter image description here

1 个答案:

答案 0 :(得分:1)

如果您想将百分比标签放在安装 wizard page上,那么我认为这是不可能的。但您可以使用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。它演示了如何控制进度。