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