プログレスバーのパーセンテージ%をバーの下に置く方法を知っている人は誰でも
例: Photoshop inno setup 5.5.1-unicode+Script ISDone 0.6 で編集された画像
プログレスバーのパーセンテージ%をバーの下に置く方法を知っている人は誰でも
例: Photoshop inno setup 5.5.1-unicode+Script ISDone 0.6 で編集された画像
インストール ウィザードページにパーセンテージラベルを付けたい場合、それは不可能だと思います。ただし、プログレスバーを制御できるCreateOutputProgressPageを使用でき、Pascal Script を介してパーセンテージ ラベルを追加できます。
[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 . 進行状況を制御する方法を示します。