Pregunta

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?

¿Fue útil?

Solución

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;
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top