使用 MUI2 for NSIS 时如何更改组件页面中标签上的文本?

发布于 2024-12-08 23:08:23 字数 306 浏览 0 评论 0原文

我想在组件页面上的某个位置添加一个链接。我尝试了所提出的方法 此处,虽然它确实适用于欢迎页面,但当我将其添加到组件页面时,它会导致安装程序崩溃。

我想添加的是一个文本,其中包含一个带下划线的蓝色单词,单击该单词会在默认浏览器上打开一个网址。我想将其添加到现有的组件页面。

谢谢,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

趁微风不噪 2024-12-15 23:08:23

我使用 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...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文