我可以在 Inno Setup 的同一个 "CreateInputOptionPage" 页面上有复选框和单选按钮吗?

Can I have checkboxes and radio buttons on the same "CreateInputOptionPage" page in Inno Setup?

是否可以使用 CreateInputOptionPage 在同一页面上同时设置单选按钮和复选框?

使用 TInputOptionWizardPage.AddEx 方法的 AExclusive 参数在单选按钮或复选框之间进行选择:

procedure InitializeWizard();
var
  Page: TInputOptionWizardPage;
begin
  Page := CreateInputOptionPage(wpWelcome, '', '', '', False, False);

  Page.AddEx('Radio button 1', 0, True);
  Page.AddEx('Radio button 2', 0, True);
  Page.AddEx('Check box 1', 0, False);
  Page.AddEx('Check box 2', 0, False);
end;