如何在 C# 中使用 Windows Installer 的 MsiSetExternalUI 处理取消按钮单击
在 Windows msi 安装中,我需要挂钩“取消”按钮单击消息。在自定义操作中,要在何处调用 MsiSetExternalUI,messageFilter 应该是什么?
如果有更好的方法来处理“取消”按钮单击事件,我们将不胜感激。 \
提前致谢。
In Windows msi installation, I need to hook to the Cancel button click message. In the Custom Action, where MsiSetExternalUI is to be invoked and what should be the messageFilter?
If there is a better way of handling the Cancel button click event, it's highly appreciated. \
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 MSDN 上的文档 ( http:// msdn.microsoft.com/en-us/library/aa371248%28v=vs.85%29.aspx )您可以检查返回值
IDCANCEL
来确定取消按钮按下情况。As per this documentation at MSDN ( http://msdn.microsoft.com/en-us/library/aa371248%28v=vs.85%29.aspx ) you can check the return value
IDCANCEL
for determining the Cancel Button Press.