在基本 MSI 项目的内部对话框中处理复选框选中事件
工具:InstallShield 2009 Premier、Basic MSI 项目
我添加了一个内部对话框,并在该对话框中添加了一个复选框。
现在,如果选中该复选框,我想退出设置(或者显示消息框)。
如何?
Tools: InstallShield 2009 Premier, Basic MSI Project
I have added an interior dialog, and in that dialog I added a checkbox.
Now if the checkbox is checked I want to exit the setup (or, show a message box).
How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你为什么要这么做?该对话框已经有一个取消按钮,对吗?我怀疑这里有一个更深层次的问题,我需要了解目标才能给出更好的答案。
否则,看看行为和逻辑 |控制事件并查看取消按钮是如何执行的。它调用 ControlEvent SpawnDialog 参数 CancelSetup 条件 1(始终),并且 CancelSetup 对话框有一个 EndDialog | 。退出事件。
Why would you want to do that? The dialog already has a cancel button, right? I suspect there's a deeper question here and I need to understand the goal to give a better answer.
Otherwise, take a look at behavior and logic | control events and look at how the cancel button does it. It calls the ControlEvent SpawnDialog argument CancelSetup condtion 1 ( Always ) and the CancelSetup dialog has an EndDialog | Exit event.