使用 MUI2 for NSIS 时如何修改 MUI_WELCOME_PAGE 中的文本?
我想在我使用 NSIS 和 MUI2 创建的安装程序的欢迎屏幕中添加一个显示完整版本字符串的标签。
我搜索了有关如何执行此操作的信息,但只找到了有关使用 MUI_INSTALLOPTIONS* 的参考,我发现 MUI2 已弃用该参考。另一位提到使用 INSTALLOPTIONS* 的新版本具有相同的选项,但我无法让它工作。我最终还找到了使用 nsDialogs 的参考 - 这就是我在自定义页面中使用的内容。但是 - 我没有找到有关如何更改 MUI2.nsh 附带的任何现有页面的参考或示例。
我找到了一种更改 MUI_HEADERTEXT 的方法,但这不会影响欢迎屏幕。我希望有一种方法也可以更改欢迎文本。也许使用 MUI_WELCOMETITLE 和 MUI_WELCOMEBODY 或类似的。
I want to add a label displaying the full version-string in the welcome screen in the installer I am creating using NSIS with MUI2.
I have searched for info on how to do this, but only found references to using MUI_INSTALLOPTIONS* which I found ws deprecated for MUI2. Another one referred to the newer versions using INSTALLOPTIONS* with the same options, but I could not get it working. I finally also found a reference to using nsDialogs for this - which is what I am using for my custom pages. However - I found no reference or samples on how to change any of the existing pages that comes with MUI2.nsh.
I found a way to change the MUI_HEADERTEXT, but that doesn't affect the welcome-screen. I wish there was a way to also change the welcometext. Maybe using MUI_WELCOMETITLE and MUI_WELCOMEBODY or similar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有 MUI_WELCOMEPAGE_TEXT 但只有当您想要更改所有文本而不仅仅是附加某些内容时它才有用。
在页面的显示功能期间,您可以更改任何控件的文本:
..或添加新控件:
There is MUI_WELCOMEPAGE_TEXT but it is only useful if you want to change all of the text and not just append something.
During the show function for the page, you can change the text of any control:
..or add a new control:
我也遇到过 NSIS 的问题。就我而言,它可以在插入宏 MUI_PAGE_WELCOME 之前定义 MUI_WELCOMEPAGE_TITLE。
它应该看起来像:
I also had the issue with NSIS. In my case it worked to define MUI_WELCOMEPAGE_TITLE before inserting the macro MUI_PAGE_WELCOME.
It should look like: