Something like:
TInputComboBoxWizardPage = class(TWizardPage)
function Add(const ACaption: string): Integer;
property SelectedValue: string;
property SelectedValues: TArrayOfString; // optional
property Values[Index: Integer]: string;
...
end;
...
function CreateInputComboBoxPage(const AfterID: Integer;
const ACaption,ADescription, ASubCaption: String;
Style: TComboBoxStyle): TInputComboBoxWizardPage;
This would be a nice addition and would reduce the amount of custom code needed for those that could use a ComboBox wizard page.