aboutsummaryrefslogtreecommitdiff
path: root/src/ext/UI/wixlib/CancelDlg.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/UI/wixlib/CancelDlg.wxs')
-rw-r--r--src/ext/UI/wixlib/CancelDlg.wxs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ext/UI/wixlib/CancelDlg.wxs b/src/ext/UI/wixlib/CancelDlg.wxs
new file mode 100644
index 00000000..0a72a415
--- /dev/null
+++ b/src/ext/UI/wixlib/CancelDlg.wxs
@@ -0,0 +1,19 @@
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="CancelDlg" Width="260" Height="85" Title="!(loc.CancelDlg_Title)">
8 <Control Id="No" Type="PushButton" X="132" Y="57" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUINo)">
9 <Publish Event="EndDialog" Value="Return" />
10 </Control>
11 <Control Id="Yes" Type="PushButton" X="72" Y="57" Width="56" Height="17" Text="!(loc.WixUIYes)">
12 <Publish Event="EndDialog" Value="Exit" />
13 </Control>
14 <Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30" NoPrefix="yes" Text="!(loc.CancelDlgText)" />
15 <Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="!(loc.CancelDlgIconTooltip)" FixedSize="yes" IconSize="32" Text="!(loc.CancelDlgIcon)" />
16 </Dialog>
17 </UI>
18 </Fragment>
19</Wix>