Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  3. <Fragment>
  4. <UI>
  5. <Dialog Id="CustomDlg" Width="370" Height="270" Title="[ProductName] - Setup">
  6. <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)">
  7. <Publish Event="NewDialog" Value="WelcomeDlg">1</Publish>
  8. </Control>
  9. <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" Disabled="yes"/>
  10. <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
  11. <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
  12. </Control>
  13. <!-- ... More Controls ... -->
  14. </Dialog>
  15.  
  16. <InstallUISequence>
  17. <Show Dialog="CustomDlg" After="CostFinalize">NOT Installed OR PATCH</Show>
  18. </InstallUISequence>
  19. </UI>
  20. </Fragment>
  21. </Wix>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement