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.wxs17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/wixlib/ErrorDlg.wxs b/src/wixlib/ErrorDlg.wxs
index 08f41264..ccad45fb 100644
--- a/src/wixlib/ErrorDlg.wxs
+++ b/src/wixlib/ErrorDlg.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">
@@ -8,26 +7,26 @@
8 <Dialog Id="ErrorDlg" Width="270" Height="105" Title="!(loc.ErrorDlg_Title)" ErrorDialog="yes"> 7 <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)" /> 8 <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)"> 9 <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> 10 <Publish Event="EndDialog" Value="ErrorYes" />
12 </Control> 11 </Control>
13 <Control Id="A" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUICancel)"> 12 <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> 13 <Publish Event="EndDialog" Value="ErrorAbort" />
15 </Control> 14 </Control>
16 <Control Id="C" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUICancel)"> 15 <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> 16 <Publish Event="EndDialog" Value="ErrorCancel" />
18 </Control> 17 </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)" /> 18 <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)"> 19 <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> 20 <Publish Event="EndDialog" Value="ErrorIgnore" />
22 </Control> 21 </Control>
23 <Control Id="N" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUINo)"> 22 <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> 23 <Publish Event="EndDialog" Value="ErrorNo" />
25 </Control> 24 </Control>
26 <Control Id="O" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUIOK)"> 25 <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> 26 <Publish Event="EndDialog" Value="ErrorOk" />
28 </Control> 27 </Control>
29 <Control Id="R" Type="PushButton" X="100" Y="80" Width="56" Height="17" TabSkip="yes" Text="!(loc.WixUIRetry)"> 28 <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> 29 <Publish Event="EndDialog" Value="ErrorRetry" />
31 </Control> 30 </Control>
32 </Dialog> 31 </Dialog>
33 32