Вопрос

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?

Это было полезно?

Решение

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;
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top