aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/ErrorDlg.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixlib/ErrorDlg.wxs')
-rw-r--r--src/wixlib/ErrorDlg.wxs37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/wixlib/ErrorDlg.wxs b/src/wixlib/ErrorDlg.wxs
new file mode 100644
index 00000000..08f41264
--- /dev/null
+++ b/src/wixlib/ErrorDlg.wxs
@@ -0,0 +1,37 @@
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="ErrorDlg" Width="270" Height="105" Title="!(loc.ErrorDlg_Title)" ErrorDialog="yes">
9 <Control Id="ErrorText" Type="Text" X="48" Y="15" Width="205" Height="60" TabSkip="no" NoPrefix="yes" Text="!(loc.ErrorDlgErrorText)" />
10 <Control Id="Y" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUIYes)">
11 <Publish Event="EndDialog" Value="ErrorYes">1</Publish>
12 </Control>
13 <Control Id="A" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUICancel)">
14 <Publish Event="EndDialog" Value="ErrorAbort">1</Publish>
15 </Control>
16 <Control Id="C" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUICancel)">
17 <Publish Event="EndDialog" Value="ErrorCancel">1</Publish>
18 </Control>
19 <Control Id="ErrorIcon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="!(loc.ErrorDlgErrorIconTooltip)" FixedSize="yes" IconSize="32" Text="!(loc.ErrorDlgErrorIcon)" />
20 <Control Id="I" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUIIgnore)">
21 <Publish Event="EndDialog" Value="ErrorIgnore">1</Publish>
22 </Control>
23 <Control Id="N" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUINo)">
24 <Publish Event="EndDialog" Value="ErrorNo">1</Publish>
25 </Control>
26 <Control Id="O" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUIOK)">
27 <Publish Event="EndDialog" Value="ErrorOk">1</Publish>
28 </Control>
29 <Control Id="R" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUIRetry)">
30 <Publish Event="EndDialog" Value="ErrorRetry">1</Publish>
31 </Control>
32 </Dialog>
33
34 <Property Id="ErrorDialog" Value="ErrorDlg" />
35 </UI>
36 </Fragment>
37</Wix>