diff options
Diffstat (limited to 'src/wixlib/WixUI_FeatureTree.wxs')
-rw-r--r-- | src/wixlib/WixUI_FeatureTree.wxs | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/wixlib/WixUI_FeatureTree.wxs b/src/wixlib/WixUI_FeatureTree.wxs new file mode 100644 index 00000000..fdb8584b --- /dev/null +++ b/src/wixlib/WixUI_FeatureTree.wxs | |||
@@ -0,0 +1,70 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <!-- 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. --> | ||
3 | |||
4 | |||
5 | |||
6 | <!-- | ||
7 | First-time install dialog sequence: | ||
8 | - WixUI_WelcomeDlg | ||
9 | - WixUI_LicenseAgreementDlg | ||
10 | - WixUI_CustomizeDlg | ||
11 | - WixUI_VerifyReadyDlg | ||
12 | - WixUI_DiskCostDlg | ||
13 | |||
14 | Maintenance dialog sequence: | ||
15 | - WixUI_MaintenanceWelcomeDlg | ||
16 | - WixUI_MaintenanceTypeDlg | ||
17 | - WixUI_CustomizeDlg | ||
18 | - WixUI_VerifyReadyDlg | ||
19 | |||
20 | Patch dialog sequence: | ||
21 | - WixUI_WelcomeDlg | ||
22 | - WixUI_VerifyReadyDlg | ||
23 | --> | ||
24 | |||
25 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
26 | <Fragment> | ||
27 | <UI Id="WixUI_FeatureTree"> | ||
28 | <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" /> | ||
29 | <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" /> | ||
30 | <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" /> | ||
31 | |||
32 | <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" /> | ||
33 | <Property Id="WixUI_Mode" Value="FeatureTree" /> | ||
34 | |||
35 | <DialogRef Id="ErrorDlg" /> | ||
36 | <DialogRef Id="FatalError" /> | ||
37 | <DialogRef Id="FilesInUse" /> | ||
38 | <DialogRef Id="MsiRMFilesInUse" /> | ||
39 | <DialogRef Id="PrepareDlg" /> | ||
40 | <DialogRef Id="ProgressDlg" /> | ||
41 | <DialogRef Id="ResumeDlg" /> | ||
42 | <DialogRef Id="UserExit" /> | ||
43 | |||
44 | <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish> | ||
45 | |||
46 | <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="LicenseAgreementDlg">NOT Installed</Publish> | ||
47 | <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">Installed AND PATCH</Publish> | ||
48 | |||
49 | <Publish Dialog="LicenseAgreementDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish> | ||
50 | <Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" Value="CustomizeDlg">LicenseAccepted = "1"</Publish> | ||
51 | |||
52 | <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="1">Installed</Publish> | ||
53 | <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="LicenseAgreementDlg" Order="2">NOT Installed</Publish> | ||
54 | <Publish Dialog="CustomizeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> | ||
55 | |||
56 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="1">NOT Installed OR WixUI_InstallMode = "Change"</Publish> | ||
57 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2">Installed AND NOT PATCH</Publish> | ||
58 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="3">Installed AND PATCH</Publish> | ||
59 | |||
60 | <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish> | ||
61 | |||
62 | <Publish Dialog="MaintenanceTypeDlg" Control="ChangeButton" Event="NewDialog" Value="CustomizeDlg">1</Publish> | ||
63 | <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> | ||
64 | <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> | ||
65 | <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish> | ||
66 | </UI> | ||
67 | |||
68 | <UIRef Id="WixUI_Common" /> | ||
69 | </Fragment> | ||
70 | </Wix> | ||