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