浏览代码

Merge branch 'is-6' into anchors

# Conflicts:
#	Examples/CodeClasses.iss
Martijn Laan 6 年之前
父节点
当前提交
23a2a942dc
共有 1 个文件被更改,包括 0 次插入15 次删除
  1. 0 15
      Examples/CodeClasses.iss

+ 0 - 15
Examples/CodeClasses.iss

@@ -9,7 +9,6 @@ CreateAppDir=no
 DisableProgramGroupPage=yes
 DefaultGroupName=My Program
 UninstallDisplayIcon={app}\MyProg.exe
-WindowVisible=yes
 WizardResizable=yes
 OutputDir=userdocs:Inno Setup Examples Output
 PrivilegesRequired=lowest
@@ -398,20 +397,6 @@ begin
 
   CreateAboutButtonAndURLLabel(WizardForm, WizardForm.CancelButton);
 
-  BackgroundBitmapImage := TBitmapImage.Create(MainForm);
-  BackgroundBitmapImage.Left := 50;
-  BackgroundBitmapImage.Top := 90;
-  BackgroundBitmapImage.AutoSize := True;
-  BackgroundBitmapImage.Bitmap := WizardForm.WizardBitmapImage.Bitmap;
-  BackgroundBitmapImage.Parent := MainForm;
-  
-  BackgroundBitmapText := TNewStaticText.Create(MainForm);
-  BackgroundBitmapText.Left := BackgroundBitmapImage.Left;
-  BackgroundBitmapText.Top := BackgroundBitmapImage.Top + BackgroundBitmapImage.Height + ScaleY(8);
-  BackgroundBitmapText.Caption := 'TBitmapImage';
-  BackgroundBitmapText.Font.Color := clWhite;
-  BackgroundBitmapText.Parent := MainForm;
-
   { Custom beveled label }
 
   WizardForm.BeveledLabel.Caption := ' Bevel ';