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