一步安装程序
我正在寻找一种在 Inno Setup 中创建单页安装程序的方法,只需看看这个屏幕截图:
谁能给我执行此操作的代码?
或者完全我想在 Inno Setup 中合并页面功能。例如,将选择目录页面与组件页面等合并
I'm looking for a way to create a one page installer in Inno Setup, just look at this screenshot:
Can anyone please give me the codes for doing this?
Or totally I would like to merge pages abilities in Inno Setup. For example merge Select directory page with Components page and etc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下做到这一点并不容易。不过是可以做到的,如下代码
生成了这样一个页面。
为了实现这一点,我使用
{code:AppDir}
作为默认目录。这告诉 InnoSetup 使用函数 AppDir 来检索安装目录。然后我可以使用我的自定义对话框进行设置。我必须在
[Files]
中使用Check
,而不是使用[Components]
和/或[Tasks]
部分。It's not easy to do by default. But it can be done, the following code
produced a page like this one.
To pull this off, I use
{code:AppDir}
as the default directory. This tells InnoSetup to use the functionAppDir
to retrieve the installation directory. I then can set it using my custom dialog.Instead of using
[Components]
and/or[Tasks]
I have to useCheck
in the[Files]
Section.