c# - Custom event on cancel the setup in wix -


i trying add custom events on wix installer. succeed add events on installation complete.
using following code:

 <installexecutesequence>       <custom action='acquirelaunchlock' before='checkformediaplayer'>notinstalled</custom>       <custom action='checkformediaplayer' before='launchconditions'>not installed</custom>          .               .          .       <custom action='updatesyncstatus' after='copyhelpervideos2'></custom>     </installexecutesequence> 


need 1 custom event on cancel also.(if user cancel setup in between)
new c#. can tell me how this?

first need determine main button id package cancel dialog. after that, can create binary custom action , execute when button pressed through doaction control event.

here thread example: how link custom action control event


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -