Inno设置 - 如何在欢迎页面的左下角放置版本号

时间:2015-09-28 20:55:28

标签: inno-setup

我想在安装程序欢迎页面的左下角显示版本号,就像在此图像中所示。但我不确定如何自定义启动页面。任何人都可以使用Inno Setup脚本建议如何做到这一点吗?

enter image description here

1 个答案:

答案 0 :(得分:6)

TNewStaticText label

中新建InitializeWizard event function
[Code]

procedure InitializeWizard();
var
  VersionLabel: TNewStaticText;
begin
  VersionLabel := TNewStaticText.Create(WizardForm);
  VersionLabel.Caption := Format('Version: %s', ['{#SetupSetting("AppVersion")}']);
  VersionLabel.Parent := WizardForm;
  VersionLabel.Left := ScaleX(16);
  VersionLabel.Top :=
    WizardForm.BackButton.Top +
    (WizardForm.BackButton.Height div 2) -
    (VersionLabel.Height div 2)
end;