(installshield 2010) 条件功能选择
(基本 MSI 项目)
我想在取消选择所有子项时自动取消选择父项功能,但我在 installshield IDE 上找不到任何选项。
例如,
(功能选择对话框)
功能 A
---功能 A-1
---功能 A-2
如果用户取消选择 A-1 和 A-2,我希望 A 也自动取消选择。
我怎样才能做到这一点?
(Basic MSI Project)
I would like to deselect parent feature automatically when all children are deselected, but i can`t find any option for that on installshield IDE.
For example,
(feature select dialog)
Feature A
---Feature A-1
---Feature A-2
If A-1 and A-2 are deselected by user, I want A also to be deselected automatically.
How can I do that??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,内置 UI 控件中没有任何内容可以执行此操作。这个想法是一个功能并不总是空的,它可以有自己的组件。如果它没有组件,那么无论如何它都不会被注册为已安装。
您也许能够在“后退”和“下一步”按钮上使用条件控制事件,以使用“删除”控制事件创建关系,但您不会立即在 UI 中看到它刷新。
控制事件
As far as I know, there's nothing in the built in UI control that does this. The thought is a feature isn't always empty, it could have components of it's own. If it doesn't have components then it won't get registered as installed anyways.
You might be able to use conditional control events on the Back and Next Buttons to create the relationship using the Remove control event but you won't see it refresh in the UI right away.
Control Events