aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/UserExit.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixlib/UserExit.wxs')
-rw-r--r--src/wixlib/UserExit.wxs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/wixlib/UserExit.wxs b/src/wixlib/UserExit.wxs
new file mode 100644
index 00000000..de1e11e8
--- /dev/null
+++ b/src/wixlib/UserExit.wxs
@@ -0,0 +1,29 @@
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="UserExit" Width="370" Height="270" Title="!(loc.UserExit_Title)">
9 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUIFinish)">
10 <Publish Event="EndDialog" Value="Exit">1</Publish>
11 </Control>
12 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUICancel)" />
13 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.UserExitBitmap)" />
14 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" />
15 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
16 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.UserExitTitle)" />
17 <Control Id="Description" Type="Text" X="135" Y="80" Width="220" Height="80" Transparent="yes" NoPrefix="yes" Text="!(loc.UserExitDescription1) !(loc.UserExitDescription2)" />
18 </Dialog>
19
20 <InstallUISequence>
21 <Show Dialog="UserExit" OnExit="cancel" Overridable="yes" />
22 </InstallUISequence>
23
24 <AdminUISequence>
25 <Show Dialog="UserExit" OnExit="cancel" Overridable="yes" />
26 </AdminUISequence>
27 </UI>
28 </Fragment>
29</Wix>