使用 MUI2 for NSIS 时如何更改组件页面中标签上的文本?
我想在组件页面上的某个位置添加一个链接。我尝试了所提出的方法 此处,虽然它确实适用于欢迎页面,但当我将其添加到组件页面时,它会导致安装程序崩溃。
我想添加的是一个文本,其中包含一个带下划线的蓝色单词,单击该单词会在默认浏览器上打开一个网址。我想将其添加到现有的组件页面。
谢谢,
杰
I want to add a link somewhere on the components page. I tried the method presented here, while it is indeed working for the WELCOME PAGE, it causes the installer to crash when I'm adding it to the components page.
The thing I want to add is a text that contains an underlined blue word which opens a url on the default browser when clicked on. I want to add it to the existing components page.
Thanks,
J
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 nsis 论坛的一些帮助解决了这个问题,相关链接是:
将链接添加到组件页面< /a> 和 如何自定义现有 MUI2页面(组件)
主要问题是,与欢迎/完成页面相比,组件页面不是 nsDialog 页面。为了动态添加标签,我们必须使用 User32::CreateWindowEx。我使用资源黑客添加了一个静态标签,以便获取其位置并将其用作我添加的新标签的指南(所有内容都在链接中进行了解释...)
I solved it using some help from the nsis forum the relevant links are:
Add Link to Components Page and How to customize an existing MUI2 page (components)
The main issue is that in contrast to welcome/finish page, the components page is not a nsDialog page. In order to dynamically add a label we have to use User32::CreateWindowEx. I used the resource hacker to add a static label in order to get its position and use that as a guide for the new label I added (It's all explained in the links...)