我想更改(在代码中)安装程序的WizardForm
上某些标签的文本,这些标签未被WizardForm
公开。
示例:
ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings.
由于编译器抱怨未知标识符WizardForm.ReadyLabel2a.Caption := 'BLAH';
,我无法ReadyLabel2a
。
有办法吗?
由于
答案 0 :(得分:0)
安装程序向导表单的所有组件都已公开。
标签为ReadyLabel
,而非ReadyLabel2a
。 ReadyLabel2a
是邮件的ID。安装程序对ReadyLabel2a
使用ReadyLabel2b
或ReadyLabel
消息,具体取决于安装配置。
WizardForm.ReadyLabel.Caption := 'BLAH';
请参阅TWizardForm
class declaration。
如果您需要针对某些标准消息安装特定于安装程序的文本,请使用Messages
section修改文本:
[Messages]
ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings.