ウィザードフォームによって、ウィザードフォームのトップ画像を変更することはできますか?左側の画像は変更できますが、上部(小さい画像)を変更したいです。
procedure CurPageChanged(CurPageID: Integer);
begin
if CurPageID = 4 then
filename:= 'babylontoolbar.bmp'
else
filename:= 'label2-crop.bmp';
ExtractTemporaryFile(filename);
(*WizardForm.WizardSmallImageFile.Bitmap.LoadFromFile(ExpandConstant('{tmp}\'+FileName));*)
WizardForm.WizardBitmapImage.Bitmap.LoadFromFile(ExpandConstant('{tmp}\' + FileName));
end;
WizardSmallImageFile
小さなファイルを参照して、機能しないファイルを置き換える方法を知りたいだけです。