简体   繁体   English

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

[英]Inno Setup - Hiding the progress bar on install page

I would like to hide the progress bar on the Installing page.我想隐藏安装页面上的进度条。

Is it even possible to do that?甚至有可能做到这一点吗?

Simply hide the progress bar control:只需隐藏进度条控件:

[Code]

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

在此处输入图像描述

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM