3
votes

I have a background in my installer and i was wondering that it would be a good idea to remove the windows frame from it and kept only the background and the footer buttons.

It´s possible in Inno Setup to remove Windows frame from installer?

1

1 Answers

4
votes

You can set the BorderStyle property of your WizardForm to bsNone to make it borderless. The best place to do so is the InitializeWizard event method:

procedure InitializeWizard;
begin
  WizardForm.BorderStyle := bsNone;
end;