将帮助按钮添加到 InnoSetup 向导页面
我有一个带有自定义向导页面的设置脚本,可以让用户进行选择。最好有一个帮助按钮并提供一个可安装的小型 CHM 文件,以便我可以提供有关选项的详细说明。
有人知道是否有一种简单的方法可以做到这一点?
I have a setup script with a custom wizard page to get a choice from the user. It would be nice to have a help button and to supply a small CHM file with the installable so that I can provide a detailed explanation of what the choices are.
Anyone know whether there is an easy way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有关如何进行的详细信息,请参阅这篇文章在安装包中包含一个文件,并在安装开始之前引用该文件。
为了向安装向导添加按钮,我在
InitializeWizard
事件处理程序中添加了以下代码。See this post for details on how to include a file with the installation package and reference that file before installation has started.
To add a button to the install wizard, I included the following code in the
InitializeWizard
event handler.只是为了完成列表:
Just to complete the listing: