diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixlib/ExitDialog.wxs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/wixlib/ExitDialog.wxs b/src/wixlib/ExitDialog.wxs new file mode 100644 index 00000000..545b0224 --- /dev/null +++ b/src/wixlib/ExitDialog.wxs | |||
@@ -0,0 +1,33 @@ | |||
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="ExitDialog" Width="370" Height="270" Title="!(loc.ExitDialog_Title)"> | ||
9 | <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUIFinish)" /> | ||
10 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUICancel)" /> | ||
11 | <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.ExitDialogBitmap)" /> | ||
12 | <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" /> | ||
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="40" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogDescription)" /> | ||
15 | <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogTitle)" /> | ||
16 | <Control Id="OptionalText" Type="Text" X="135" Y="110" Width="220" Height="80" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="[WIXUI_EXITDIALOGOPTIONALTEXT]"> | ||
17 | <Condition Action="show">WIXUI_EXITDIALOGOPTIONALTEXT AND NOT Installed</Condition> | ||
18 | </Control> | ||
19 | <Control Id="OptionalCheckBox" Type="CheckBox" X="135" Y="190" Width="220" Height="40" Hidden="yes" Property="WIXUI_EXITDIALOGOPTIONALCHECKBOX" CheckBoxValue="1" Text="[WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT]"> | ||
20 | <Condition Action="show">WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT AND NOT Installed</Condition> | ||
21 | </Control> | ||
22 | </Dialog> | ||
23 | |||
24 | <InstallUISequence> | ||
25 | <Show Dialog="ExitDialog" OnExit="success" Overridable="yes" /> | ||
26 | </InstallUISequence> | ||
27 | |||
28 | <AdminUISequence> | ||
29 | <Show Dialog="ExitDialog" OnExit="success" Overridable="yes" /> | ||
30 | </AdminUISequence> | ||
31 | </UI> | ||
32 | </Fragment> | ||
33 | </Wix> | ||