WIX - 在安装过程中生成对话框
是否可以在 InstallExecuteSequence 中安排的自定义操作之后生成一个对话框???
我有两个自定义操作,在第一个操作之后,我需要生成一个对话框。 当用户在该对话框上单击“确定”时,该对话框将关闭并继续第二个对话框。
但是,在自定义操作完成后如何生成该对话框?
Is it possible to spawn a dialog after a custom action that is scheduled in InstallExecuteSequence???
I have a two custom Action, after the first one, I need to spawn a dialog.
When the user click OK on that dialog, the dialog close and continue the second one.
But how can I spawn that dialog after the custom action is done??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能不完全是您正在寻找的内容,但在您的自定义操作中,如果您包含 System.Windows.Forms,您可以调用 MessageBox.Show("...") 来打开一个对话框。
May not be exactly what you are looking for, but in your custom Action, if you include System.Windows.Forms you can call MessageBox.Show("...") to bring up a dialog.