0
我想在Wix安裝程序上添加自定義事件。我成功添加了安裝完成的事件。
對於這個我使用下面的代碼:
自定義事件取消安裝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#。所以任何人都可以告訴我如何做到這一點?
使用的OnExit =「取消」添加其他自定義動作(或的OnExit =「錯誤」,如果它是的情況下)。 –
@Adriano你能告訴我一行代碼嗎? –
就像這樣:' '(見http://wix.sourceforge.net/manual-wix2/wix_xsd_custom.htm) –