6

カスタム ページの [次へ] または [キャンセル] ボタンのキャプションを変更するには?

4

1 に答える 1

7

以下を使用できます。

procedure CurPageChanged(CurPageID: Integer);
begin
  if CurPageID = YourPageName.ID then begin
    WizardForm.NextButton.Caption := SetupMessage(msgButtonInstall);  
//or := 'YourNewNextButtonText' or := ExpandConstant('{cm:YourCmTitleForNext}')
    WizardForm.CancelButton.Caption := ExpandConstant('{cm:YourCmTitleForCancel}');
  end; //begin + end to make changes only for this single page
end;
于 2013-01-15T13:07:29.943 に答える