Inno Setup:卸载用户对话框
我需要一个带有是/否选项的用户对话框来进行卸载过程(“同时删除 在 userappdata 文件夹中设置文件?”)!
这怎么可能?
提前谢谢您!
问候
I need a user dialog with yes/no option for the uninstall process ("also delete the
setting files in the userappdata folder?" )!
How is this possible?
Thank you in advance!
greets
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建自定义表单 (
CreateCustomForm()
) 或在CurUninstallStepChanged(usUninstall)
中使用简单的消息框 (MsgBox()
) > 事件功能。You will need to create a custom form (
CreateCustomForm()
) or use a simple message box (MsgBox()
) in theCurUninstallStepChanged(usUninstall)
event function.