ui.wxf 886 B

12345678910111213141516
  1. <?xml version="1.0" ?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
  3. <Fragment>
  4. <Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR"></Property>
  5. <WixVariable Id="WixUILicenseRtf" Value="$(var.JpLicenseRtf)"></WixVariable>
  6. <UI Id="JpUI">
  7. <UIRef Id="CustomWizard" />
  8. <DialogRef Id="InstallDirNotEmptyDlg"></DialogRef>
  9. <Publish Dialog="ShortcutPromptDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg">1</Publish>
  10. <Publish Dialog="ShortcutPromptDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
  11. <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="ShortcutPromptDlg" Order="6">NOT Installed</Publish>
  12. <UIRef Id="CustomWizard" />
  13. </UI>
  14. </Fragment>
  15. <?include $(env.JP_WIXWIZARD_RESOURCES)\customWizard.wxi ?>
  16. </Wix>