我创建了一个图像,我希望在安装程序的整个欢迎页面和完成页面上显示,只显示底部按钮.
欢迎向导页面应如下所示:
完成页面如:
我越来越
请帮忙!提前致谢
首先,请注意,自Inno Setup 5.5.7起,默认情况下会禁用"欢迎"页面.如果你真的想要它,你必须使用它DisableWelcomePage=no
.
要仅在页面上显示图像,您需要执行以下操作:
拉伸WizardBitmapImage
(欢迎)和WizardBitmapImage2
(完成)各自的父页面.
隐藏其他组件,主要是标签.
确保安装程序永远不需要重新启动计算机,否则您将在映像上获得重新启动提示.
出于同样的原因,请确保postinstall
该[Run]
部分中没有任何条目.
[Setup]
DisableWelcomePage=no
WizardImageFile=godfather.bmp
[Code]
procedure InitializeWizard();
begin
{ Welcome page }
{ Hide the labels }
WizardForm.WelcomeLabel1.Visible := False;
WizardForm.WelcomeLabel2.Visible := False;
{ Stretch image over whole page }
WizardForm.WizardBitmapImage.Width := WizardForm.WizardBitmapImage.Parent.Width;
{ Finished page }
{ Hide the labels }
WizardForm.FinishedLabel.Visible := False;
WizardForm.FinishedHeadingLabel.Visible := False;
{ Stretch image over whole page }
WizardForm.WizardBitmapImage2.Width := WizardForm.WizardBitmapImage2.Parent.Width;
end;