如何在安装程序中显示多个许可证
我使用 Inno Setup 为我的程序创建安装程序。在我的程序中,我使用第三方库,因此我必须显示每个库的许可证信息。 我还希望安装程序显示所选语言的某些许可证文件。 如果我有 1 个许可证表格,我知道如何在许可证文件之间切换。
我在谷歌上查了一整天,但没有找到任何东西,
我怎样才能显示多个许可证?
I use the Inno Setup to create installer for my program. In my program I use third-party libraries, so I have to show license information for each of them.
also I want the installer to show certain license files to chosen language.
I know how to switch between license files if I have 1 license form.
I've looked in google for whole day but didn't find anything
how can I show several licenses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过从
[Setup]
中删除LicenseFile
指令并将其放入[Languages]
中,使每个许可证文件与语言文件匹配,如下所示:希望有帮助
You can make each license file match the language file by removing the
LicenseFile
directive from[Setup]
and putting it in the[Languages]
like this:Hope that helps
您可以使用 CreateOutputMsgMemoPage 创建一个带有备注框的页面。然后,您可以调整大小并添加同意/不同意框。
You can use the CreateOutputMsgMemoPage to create a page with the memo box on. You can then adjust the sizing and add the agree/disagree boxes.