以下脚本在自定义页面上创建两个单选按钮,并根据它们的选择从组合框中选择安装类型(在组件选择页面上)。此选择仅在您离开该自定义页面时发生,因此您在该组合框中所做的选择更改将保留,除非您再次访问该自定义页面:
[Types]
Name: "client"; Description: "Client installation"
Name: "server"; Description: "Server installation"
Name: "custom"; Description: "Custom installation"; Flags: iscustom
[Components]
Name: "common"; Description: "Common files"; Types: client server custom; Flags: fixed
Name: "client"; Description: "Client files"; Types: client
Name: "server"; Description: "Server files"; Types: server
[Files]
Source: "Common.exe"; DestDir: "{app}"; Components: common
Source: "Client.exe"; DestDir: "{app}"; Components: client
Source: "Server.exe"; DestDir: "{app}"; Components: server
[Code]
var
CustomPage: TWizardPage;
ClientButton: TNewRadioButton;
ServerButton: TNewRadioButton;
function CreateRadioButton(AParent: TWizardPage; ATop: Integer;
ACaption: string; AHint: string): TNewRadioButton;
begin
Result := TNewRadioButton.Create(WizardForm);
with Result do
begin
Parent := AParent.Surface;
Top := ATop;
Width := AParent.SurfaceWidth;
Caption := ACaption;
Hint := AHint;
end;
end;
procedure InitializeWizard;
begin
CustomPage := CreateCustomPage(wpWelcome, 'Installation type', '');
ClientButton := CreateRadioButton(CustomPage, 16, 'Client', '');
ServerButton := CreateRadioButton(CustomPage, 34, 'Server', '');
end;
function NextButtonClick(CurPageID: Integer): Boolean;
begin
Result := True;
if CurPageID = CustomPage.ID then
begin
if ClientButton.Checked then
WizardForm.TypesCombo.ItemIndex := 0
else
if ServerButton.Checked then
WizardForm.TypesCombo.ItemIndex := 1;
WizardForm.TypesCombo.OnChange(WizardForm);
end;
end;