如何在 NSIS 脚本中强制使用 SectionGroup

发布于 2024-08-18 04:39:32 字数 217 浏览 3 评论 0原文

在 NSIS MUI 脚本中,可以通过将“SectionIn RO”添加到该部分来强制该部分。我想指出整个SectionGroup 是强制性的。我知道我可以将每个单独的组件设为强制,这使得该组默认为强制,但“SectionGroup”复选框仍处于启用状态,表明用户可以将其关闭。这可能会令人困惑。

对于SectionGroups,是否有相当于“SectionIn RO”的功能,从而强制禁用该组的复选框?

In an NSIS MUI script it is possible to make a section compulsory by adding "SectionIn RO" to the section. I would like to specify that the entire SectionGroup is compulsory. I know I can make each of the individual components compulsory which makes the group compulsory by default, but the SectionGroup checkbox is still enabled indicating that the user can turn it off. This could be confusing.

Is there an equivilent to "SectionIn RO" for SectionGroups and thus force the group's checkbox to be disabled?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

十级心震 2024-08-25 04:39:32

我想说这是一个 NSIS 错误。 (如果您决定在项目跟踪器上报告此问题,您可以参考 这个错误,它应该作为该错误的一部分被修复)

强制只读标志似乎有效:

SectionGroup /e foo SecFoo
Section bar
SectionIn RO
SectionEnd
Section baz
SectionIn RO
SectionEnd
SectionGroupEnd

page components "" ForceHackyRO
page InstFiles



!include Sections.nsh

Function ForceHackyRO
!insertmacro SetSectionFlag ${SecFoo} ${SF_RO}
FunctionEnd

I would say this is a NSIS bug. (If you decide to report this on the project tracker, you can reference this bug, it should have been fixed as part of that bug)

Forcing the readonly flag seems to work:

SectionGroup /e foo SecFoo
Section bar
SectionIn RO
SectionEnd
Section baz
SectionIn RO
SectionEnd
SectionGroupEnd

page components "" ForceHackyRO
page InstFiles



!include Sections.nsh

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