私の前でこの巨大な質問に直面したとき、私はInno Setupデザインに取り組んでいました...ウィザードフォームを半透明にするには?半透明ウィザードフォーム
私もFMXのFill.Color
とtransparency=true
をInno Setupで使用できる方法があれば、私はDelphiも知っていますか?
私は現在、ウィザードの作成のために、この機能を使用しています:
procedure CreateWizardForm;
begin
with WizardForm do begin
BorderStyle:=bsNone;
ClientWidth:=900;
ClientHeight:=540;
InnerNotebook.Hide;
OuterNotebook.Hide;
Center;
Bevel.Hide;
NextButton.Width:=0;
CancelButton.Width:=0;
end;
Form:=ImgLoad(WizardForm.Handle,ExpandConstant('{tmp}')+'\form.png',0,0,900,540,True,True);
end;
よろしく
ラミロ
参考[Inno Setupページの下部を透明にする方法は? (スクリーンショットがあります)](http://stackoverflow.com/q/27031922/850848) –
Inno SetupはFMXではなくVCLに基づいています。 –