Warning, /sdk/cutehmi/extra/WiX/sampleUI.wxs is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="UTF-8"?>
0002 <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
0003 
0004 
0005 
0006 <!--
0007 First-time install dialog sequence:
0008 - WixUI_WelcomeDlg
0009 - WixUI_LicenseAgreementDlg
0010 - WixUI_SetupTypeDlg
0011 - WixUI_VerifyReadyDlg
0012 - WixUI_CustomizeDlg
0013 - WixUI_DiskCostDlg
0014 - WixUI_BrowseDlg
0015 
0016 Maintenance dialog sequence:
0017 - WixUI_MaintenanceWelcomeDlg
0018 - WixUI_MaintenanceTypeDlg
0019 - WixUI_CustomizeDlg
0020 - WixUI_VerifyReadyDlg
0021 
0022 Patch dialog sequence:
0023  - WixUI_WelcomeDlg
0024  - WixUI_VerifyReadyDlg
0025 -->
0026 
0027 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
0028     <Fragment>
0029         <UI Id="sampleUI">
0030             <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
0031             <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
0032             <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
0033 
0034             <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
0035             <Property Id="WixUI_Mode" Value="Mondo" />
0036 
0037             <DialogRef Id="ErrorDlg" />
0038             <DialogRef Id="FatalError" />
0039             <DialogRef Id="FilesInUse" />
0040             <DialogRef Id="MsiRMFilesInUse" />
0041             <DialogRef Id="PrepareDlg" />
0042             <DialogRef Id="ProgressDlg" />
0043             <DialogRef Id="ResumeDlg" />
0044             <DialogRef Id="UserExit" />
0045 
0046             <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish>
0047 
0048             <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="SetupTypeDlg">NOT Installed AND NOT PATCH</Publish>
0049             <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">Installed AND PATCH</Publish>
0050 
0051             <Publish Dialog="SetupTypeDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish>
0052             <Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
0053             <Publish Dialog="SetupTypeDlg" Control="CustomButton" Event="NewDialog" Value="CustomizeDlg">1</Publish>
0054             <Publish Dialog="SetupTypeDlg" Control="CompleteButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
0055 
0056             <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="1">WixUI_InstallMode = "Change"</Publish>
0057             <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg" Order="2">WixUI_InstallMode = "InstallCustom"</Publish>
0058             <Publish Dialog="CustomizeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
0059 
0060             <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="1">WixUI_InstallMode = "InstallCustom"</Publish>
0061             <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg" Order="2">WixUI_InstallMode = "InstallTypical" OR WixUI_InstallMode = "InstallComplete"</Publish>
0062             <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="3">WixUI_InstallMode = "Change"</Publish>
0063             <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="4">WixUI_InstallMode = "Repair" OR WixUI_InstallMode = "Remove"</Publish>
0064             <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">WixUI_InstallMode = "Update"</Publish>
0065 
0066             <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
0067 
0068             <Publish Dialog="MaintenanceTypeDlg" Control="ChangeButton" Event="NewDialog" Value="CustomizeDlg">1</Publish>
0069             <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
0070             <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
0071             <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish>
0072         </UI>
0073 
0074         <UIRef Id="WixUI_Common" />
0075     </Fragment>
0076 </Wix>