diff options
Diffstat (limited to 'src/ext/UI/wixlib/InvalidDirDlg.wxs')
-rw-r--r-- | src/ext/UI/wixlib/InvalidDirDlg.wxs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ext/UI/wixlib/InvalidDirDlg.wxs b/src/ext/UI/wixlib/InvalidDirDlg.wxs new file mode 100644 index 00000000..8c3a6fc7 --- /dev/null +++ b/src/ext/UI/wixlib/InvalidDirDlg.wxs | |||
@@ -0,0 +1,16 @@ | |||
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="InvalidDirDlg" Width="260" Height="85" Title="!(loc.InvalidDirDlg_Title)"> | ||
8 | <Control Id="OK" Type="PushButton" X="102" Y="57" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUIOK)"> | ||
9 | <Publish Event="EndDialog" Value="Return" /> | ||
10 | </Control> | ||
11 | <Control Id="Text" Type="Text" X="48" Y="22" Width="194" Height="30" Text="!(loc.InvalidDirDlgText)" /> | ||
12 | <Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="!(loc.InvalidDirDlgIconTooltip)" FixedSize="yes" IconSize="32" Text="!(loc.InvalidDirDlgIcon)" /> | ||
13 | </Dialog> | ||
14 | </UI> | ||
15 | </Fragment> | ||
16 | </Wix> | ||