diff options
Diffstat (limited to 'src/wixlib/ProgressDlg.wxs')
-rw-r--r-- | src/wixlib/ProgressDlg.wxs | 45 |
1 files changed, 12 insertions, 33 deletions
diff --git a/src/wixlib/ProgressDlg.wxs b/src/wixlib/ProgressDlg.wxs index 63af2a72..057b104f 100644 --- a/src/wixlib/ProgressDlg.wxs +++ b/src/wixlib/ProgressDlg.wxs | |||
@@ -1,5 +1,4 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | 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 | <!-- 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 | 2 | ||
4 | 3 | ||
5 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
@@ -7,7 +6,7 @@ | |||
7 | <UI> | 6 | <UI> |
8 | <Dialog Id="ProgressDlg" Width="370" Height="270" Title="!(loc.ProgressDlg_Title)" Modeless="yes"> | 7 | <Dialog Id="ProgressDlg" Width="370" Height="270" Title="!(loc.ProgressDlg_Title)" Modeless="yes"> |
9 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUICancel)"> | 8 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUICancel)"> |
10 | <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish> | 9 | <Publish Event="SpawnDialog" Value="CancelDlg" /> |
11 | </Control> | 10 | </Control> |
12 | <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.ProgressDlgBannerBitmap)" /> | 11 | <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.ProgressDlgBannerBitmap)" /> |
13 | <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" /> | 12 | <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" /> |
@@ -15,36 +14,16 @@ | |||
15 | <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> | 14 | <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> |
16 | <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> | 15 | <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> |
17 | <!-- mutually exclusive title and description strings overlap --> | 16 | <!-- mutually exclusive title and description strings overlap --> |
18 | <Control Id="TextInstalling" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextInstalling)"> | 17 | <Control Id="TextInstalling" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextInstalling)" ShowCondition="NOT Installed OR (Installed AND (RESUME OR Preselected) AND NOT PATCH)" /> |
19 | <Condition Action="show">NOT Installed OR (Installed AND (RESUME OR Preselected) AND NOT PATCH)</Condition> | 18 | <Control Id="TitleInstalling" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleInstalling)" ShowCondition="NOT Installed OR (Installed AND (RESUME OR Preselected) AND NOT PATCH)" /> |
20 | </Control> | 19 | <Control Id="TextChanging" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextChanging)" ShowCondition="WixUI_InstallMode = "Change"" /> |
21 | <Control Id="TitleInstalling" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleInstalling)"> | 20 | <Control Id="TitleChanging" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleChanging)" ShowCondition="WixUI_InstallMode = "Change"" /> |
22 | <Condition Action="show">NOT Installed OR (Installed AND (RESUME OR Preselected) AND NOT PATCH)</Condition> | 21 | <Control Id="TextRepairing" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextRepairing)" ShowCondition="WixUI_InstallMode = "Repair"" /> |
23 | </Control> | 22 | <Control Id="TitleRepairing" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleRepairing)" ShowCondition="WixUI_InstallMode = "Repair"" /> |
24 | <Control Id="TextChanging" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextChanging)"> | 23 | <Control Id="TextRemoving" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextRemoving)" ShowCondition="WixUI_InstallMode = "Remove"" /> |
25 | <Condition Action="show">WixUI_InstallMode = "Change"</Condition> | 24 | <Control Id="TitleRemoving" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleRemoving)" ShowCondition="WixUI_InstallMode = "Remove"" /> |
26 | </Control> | 25 | <Control Id="TextUpdating" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextUpdating)" ShowCondition="WixUI_InstallMode = "Update"" /> |
27 | <Control Id="TitleChanging" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleChanging)"> | 26 | <Control Id="TitleUpdating" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleUpdating)" ShowCondition="WixUI_InstallMode = "Update"" /> |
28 | <Condition Action="show">WixUI_InstallMode = "Change"</Condition> | ||
29 | </Control> | ||
30 | <Control Id="TextRepairing" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextRepairing)"> | ||
31 | <Condition Action="show">WixUI_InstallMode = "Repair"</Condition> | ||
32 | </Control> | ||
33 | <Control Id="TitleRepairing" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleRepairing)"> | ||
34 | <Condition Action="show">WixUI_InstallMode = "Repair"</Condition> | ||
35 | </Control> | ||
36 | <Control Id="TextRemoving" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextRemoving)"> | ||
37 | <Condition Action="show">WixUI_InstallMode = "Remove"</Condition> | ||
38 | </Control> | ||
39 | <Control Id="TitleRemoving" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleRemoving)"> | ||
40 | <Condition Action="show">WixUI_InstallMode = "Remove"</Condition> | ||
41 | </Control> | ||
42 | <Control Id="TextUpdating" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextUpdating)"> | ||
43 | <Condition Action="show">WixUI_InstallMode = "Update"</Condition> | ||
44 | </Control> | ||
45 | <Control Id="TitleUpdating" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleUpdating)"> | ||
46 | <Condition Action="show">WixUI_InstallMode = "Update"</Condition> | ||
47 | </Control> | ||
48 | <Control Id="ActionText" Type="Text" X="70" Y="100" Width="285" Height="10"> | 27 | <Control Id="ActionText" Type="Text" X="70" Y="100" Width="285" Height="10"> |
49 | <Subscribe Event="ActionText" Attribute="Text" /> | 28 | <Subscribe Event="ActionText" Attribute="Text" /> |
50 | </Control> | 29 | </Control> |