diff options
Diffstat (limited to 'src/ext/UI/wixlib/MsiRMFilesInUse.wxs')
-rw-r--r-- | src/ext/UI/wixlib/MsiRMFilesInUse.wxs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/ext/UI/wixlib/MsiRMFilesInUse.wxs b/src/ext/UI/wixlib/MsiRMFilesInUse.wxs new file mode 100644 index 00000000..9881f0e6 --- /dev/null +++ b/src/ext/UI/wixlib/MsiRMFilesInUse.wxs | |||
@@ -0,0 +1,34 @@ | |||
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 | <Property Id="WixUIRMOption" Value="UseRM" /> | ||
8 | <Dialog Id="MsiRMFilesInUse" Width="370" Height="270" Title="!(loc.MsiRMFilesInUse_Title)" KeepModeless="yes"> | ||
9 | <Control Id="OK" Type="PushButton" X="240" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUIOK)"> | ||
10 | <Publish Event="EndDialog" Value="Return" /> | ||
11 | <Publish Event="RMShutdownAndRestart" Value="0" Condition="WixUIRMOption~="UseRM"" /> | ||
12 | </Control> | ||
13 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)"> | ||
14 | <Publish Event="EndDialog" Value="Exit" /> | ||
15 | </Control> | ||
16 | |||
17 | <Control Id="ShutdownOption" Type="RadioButtonGroup" X="26" Y="190" Width="305" Height="45" Property="WixUIRMOption"> | ||
18 | <RadioButtonGroup Property="WixUIRMOption"> | ||
19 | <RadioButton Value="UseRM" X="0" Y="0" Width="295" Height="16" Text="!(loc.MsiRMFilesInUseUseRM)" /> | ||
20 | <RadioButton Value="DontUseRM" X="0" Y="20" Width="295" Height="16" Text="!(loc.MsiRMFilesInUseDontUseRM)" /> | ||
21 | </RadioButtonGroup> | ||
22 | </Control> | ||
23 | |||
24 | <Control Id="List" Type="ListBox" X="20" Y="100" Width="330" Height="80" Property="FileInUseProcess" Sunken="yes" TabSkip="yes" /> | ||
25 | <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.MsiRMFilesInUseBannerBitmap)" /> | ||
26 | <Control Id="Text" Type="Text" X="20" Y="55" Width="330" Height="45" Text="!(loc.MsiRMFilesInUseText)" /> | ||
27 | <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> | ||
28 | <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> | ||
29 | <Control Id="Description" Type="Text" X="20" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.MsiRMFilesInUseDescription)" /> | ||
30 | <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.MsiRMFilesInUseTitle)" /> | ||
31 | </Dialog> | ||
32 | </UI> | ||
33 | </Fragment> | ||
34 | </Wix> | ||