Is there any way to add a single custom msi dialog without describing a whole UI sequence?
Something like this:
Something like this:
<Product>
<UIRef Id="InstallDir_Custom"/>
...
</Product>
....
<Fragment>
<UI Id="InstallDir_Custom">
<UIRef Id="WixUI_InstallDir"/>
<UIRef Id="WixUI_ErrorProgressText" />
<DialogRef Id="MyCustomMSIDlg" />
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="MyCustomMSIDlg" Order="3">1</Publish>
<Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="MyCustomMSIDlg" Order="3">1</Publish>
</UI>
</Fragment>