diff options
Diffstat (limited to 'src/ext/UI/wixlib/FilesInUse.wxs')
-rw-r--r-- | src/ext/UI/wixlib/FilesInUse.wxs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ext/UI/wixlib/FilesInUse.wxs b/src/ext/UI/wixlib/FilesInUse.wxs new file mode 100644 index 00000000..7892a5d5 --- /dev/null +++ b/src/ext/UI/wixlib/FilesInUse.wxs | |||
@@ -0,0 +1,27 @@ | |||
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="FilesInUse" Width="370" Height="270" Title="!(loc.FilesInUse_Title)" KeepModeless="yes"> | ||
8 | <Control Id="Retry" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUIRetry)"> | ||
9 | <Publish Event="EndDialog" Value="Retry" /> | ||
10 | </Control> | ||
11 | <Control Id="Ignore" Type="PushButton" X="235" Y="243" Width="56" Height="17" Text="!(loc.WixUIIgnore)"> | ||
12 | <Publish Event="EndDialog" Value="Ignore" /> | ||
13 | </Control> | ||
14 | <Control Id="Exit" Type="PushButton" X="166" Y="243" Width="56" Height="17" Text="!(loc.FilesInUseExit)"> | ||
15 | <Publish Event="EndDialog" Value="Exit" /> | ||
16 | </Control> | ||
17 | <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.FilesInUseBannerBitmap)" /> | ||
18 | <Control Id="Text" Type="Text" X="20" Y="55" Width="330" Height="30" Text="!(loc.FilesInUseText)" /> | ||
19 | <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> | ||
20 | <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> | ||
21 | <Control Id="Description" Type="Text" X="20" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.FilesInUseDescription)" /> | ||
22 | <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.FilesInUseTitle)" /> | ||
23 | <Control Id="List" Type="ListBox" X="20" Y="87" Width="330" Height="130" Property="FileInUseProcess" Sunken="yes" TabSkip="yes" /> | ||
24 | </Dialog> | ||
25 | </UI> | ||
26 | </Fragment> | ||
27 | </Wix> | ||