Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Have you had a look at the great WiX Tutorial which has a <a href="http://www.tramontana.co.hu/wix/lesson2.php" rel="nofollow noreferrer">UI page here</a>(<a href="https://web.archive.org/web/20071005042401/http://www.tramontana.co.hu/wix/lesson2.php" rel="nofollow noreferrer">archive</a>)?</p> <p>As far as I remember, there UI sample which you can download from there has a bunch of UI dialogs in it. Not sure if it's the "complete" and ultimate list - but certainly quite a nice list, if I recall correctly.</p> <p>EDIT: really seems awfully hard to find a complete list of those dialogs! Hey Rob - if you read this - this would be a GREAT addition to your WiX Help file and FAQ on wix.sourceforge.net!</p> <p>I couldn't even find anything in the source at all......</p> <p>But digging up some code I had, some time, I must have found a "WiXUI......wxi" fragment file, since I tweaked the list of dialogs to remove the "License agreement" dialog. Other than that, my list here should be complete, I think:</p> <pre><code>&lt;!-- First-time install dialog sequence: Maintenance dialog sequence: - WixUI_WelcomeDlg - WixUI_MaintenanceWelcomeDlg - WixUI_LicenseAgreementDlg - WixUI_MaintenanceTypeDlg - WixUI_CustomizeDlg - WixUI_CustomizeDlg - WixUI_VerifyReadyDlg - WixUI_VerifyReadyDlg - WixUI_DiskCostDlg --&gt; &lt;Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi"&gt; &lt;Fragment&gt; &lt;UI Id="WixUI_NoLicenseAgreement"&gt; &lt;Property Id="DefaultUIFont" Value="WixUI_Font_Normal" /&gt; &lt;Property Id="WixUI_Mode" Value="FeatureTree" /&gt; &lt;DialogRef Id="BrowseDlg" /&gt; &lt;DialogRef Id="CustomizeDlg" /&gt; &lt;DialogRef Id="DiskCostDlg" /&gt; &lt;DialogRef Id="ErrorDlg" /&gt; &lt;DialogRef Id="ExitDialog" /&gt; &lt;DialogRef Id="FatalError" /&gt; &lt;DialogRef Id="FilesInUse" /&gt; &lt;DialogRef Id="MaintenanceTypeDlg" /&gt; &lt;DialogRef Id="MaintenanceWelcomeDlg" /&gt; &lt;DialogRef Id="MsiRMFilesInUse" /&gt; &lt;DialogRef Id="PrepareDlg" /&gt; &lt;DialogRef Id="ProgressDlg" /&gt; &lt;DialogRef Id="ResumeDlg" /&gt; &lt;DialogRef Id="UserExit" /&gt; &lt;DialogRef Id="VerifyReadyDlg" /&gt; &lt;DialogRef Id="WelcomeDlg" /&gt; </code></pre> <p>Of course, the order in which these dialogs appear, is controlled by the "UI sequences" in your install. </p> <p>Marc</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload