我正在尝试在Wix安装程序上添加自定义事件。我成功完成安装完成后的事件。
为此,我使用以下代码:
<InstallExecuteSequence>
<Custom Action='AcquireLaunchLock' Before='CheckForMediaPlayer'>NotInstalled</Custom>
<Custom Action='CheckForMediaPlayer' Before='LaunchConditions'>Not Installed</Custom>
.
.
.
<Custom Action='UpdateSyncStatus' After='CopyHelperVideos2'></Custom>
</InstallExecuteSequence>
我也需要一个自定义事件取消。(如果用户取消之间的设置)
我是新的c#。所以有人能告诉我怎么做吗?