Inno setup 在Inno设置中更改WizardForm页面上的标签文本

Inno setup 在Inno设置中更改WizardForm页面上的标签文本,inno-setup,pascalscript,Inno Setup,Pascalscript,我想更改安装程序的向导表单上未被向导表单公开的某些标签的文本(以代码形式) 例如: ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings. 我不能做WizardForm.ReadyLabel2a.Caption:=“废话”编译器抱怨未知标识符ReadyLabel2a 有办法吗 谢谢安装程序向导表单的所有组件都

我想更改安装程序的
向导表单
上未被
向导表单
公开的某些标签的文本(以代码形式)

例如:

ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings.
我不能做
WizardForm.ReadyLabel2a.Caption:=“废话”编译器抱怨未知标识符
ReadyLabel2a

有办法吗


谢谢

安装程序向导表单的所有组件都已公开

标签是
ReadyLabel
,而不是
ReadyLabel2a
ReadyLabel2a
是消息的ID。根据安装配置,安装程序对
ReadyLabel
使用消息
ReadyLabel2a
ReadyLabel2b

WizardForm.ReadyLabel.Caption:='BLAH';


您可以在中找到消息在控件中的使用方式


如果需要为某些标准消息提供特定于安装程序的文本,请使用以下方法修改文本:


谢谢在你的帮助下,我能够解决我的问题。
[Messages]
ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings.