aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/PrepareDlg.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixlib/PrepareDlg.wxs')
-rw-r--r--src/wixlib/PrepareDlg.wxs31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/wixlib/PrepareDlg.wxs b/src/wixlib/PrepareDlg.wxs
new file mode 100644
index 00000000..f2461a2c
--- /dev/null
+++ b/src/wixlib/PrepareDlg.wxs
@@ -0,0 +1,31 @@
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<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
6 <Fragment>
7 <UI>
8 <Dialog Id="PrepareDlg" Width="370" Height="270" Title="!(loc.PrepareDlg_Title)" Modeless="yes">
9 <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>
11 </Control>
12 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.PrepareDlgBitmap)" />
13 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
14 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.PrepareDlgDescription)" />
15 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.PrepareDlgTitle)" />
16 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" TabSkip="yes" Text="!(loc.WixUIBack)" />
17 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" TabSkip="yes" Text="!(loc.WixUINext)" />
18 <Control Id="ActionData" Type="Text" X="135" Y="125" Width="220" Height="30" Transparent="yes" NoPrefix="yes">
19 <Subscribe Event="ActionData" Attribute="Text" />
20 </Control>
21 <Control Id="ActionText" Type="Text" X="135" Y="100" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
22 <Subscribe Event="ActionText" Attribute="Text" />
23 </Control>
24 </Dialog>
25
26 <InstallUISequence>
27 <Show Dialog="PrepareDlg" Before="AppSearch" Overridable="yes" />
28 </InstallUISequence>
29 </UI>
30 </Fragment>
31</Wix>