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