Inno Setup - 隐藏安装页面的进度条

Inno Setup - Hiding the progress bar on install page

我想隐藏正在安装页面上的进度条。

甚至可以这样做吗?

简单隐藏进度条控件:

[Code]

procedure InitializeWizard();
begin
  WizardForm.ProgressGauge.Visible := False;
end;