gpt4 book ai didi

inno-setup - Inno Setup 中带有拉伸(stretch)图像的自定义欢迎和完成页面

转载 作者:行者123 更新时间:2023-12-03 08:29:24 30 4
gpt4 key购买 nike

我创建了一个图像,我希望它出现在安装程序的整个欢迎和完成页面上,只显示底部按钮。

欢迎向导页面应如下所示:

enter image description here

完成页面如下:

enter image description here

我越来越

enter image description here

请帮忙!
提前谢谢😊

最佳答案

首先,请注意欢迎页面在 Inno Setup 5.5.7 之后默认禁用。 .如果你真的想要它,你必须使用 DisableWelcomePage=no 来启用它。 .
要仅在页面上显示图像,您需要执行以下操作:

  • 拉伸(stretch) 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;
    Finished page with stretched image

    关于inno-setup - Inno Setup 中带有拉伸(stretch)图像的自定义欢迎和完成页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34705492/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com