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