diff options
Diffstat (limited to 'src/wixlib/SetupTypeDlg.wxs')
-rw-r--r-- | src/wixlib/SetupTypeDlg.wxs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/wixlib/SetupTypeDlg.wxs b/src/wixlib/SetupTypeDlg.wxs new file mode 100644 index 00000000..97683f58 --- /dev/null +++ b/src/wixlib/SetupTypeDlg.wxs | |||
@@ -0,0 +1,36 @@ | |||
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 | <Dialog Id="SetupTypeDlg" Width="370" Height="270" Title="!(loc.SetupTypeDlg_Title)"> | ||
9 | <Control Id="TypicalButton" Type="PushButton" X="40" Y="65" Width="80" Height="17" ToolTip="!(loc.SetupTypeDlgTypicalButtonTooltip)" Default="yes" Text="!(loc.SetupTypeDlgTypicalButton)"> | ||
10 | <Publish Property="WixUI_InstallMode" Value="InstallTypical">1</Publish> | ||
11 | <Publish Event="SetInstallLevel" Value="3">1</Publish> | ||
12 | </Control> | ||
13 | <Control Id="CustomButton" Type="PushButton" X="40" Y="118" Width="80" Height="17" ToolTip="!(loc.SetupTypeDlgCustomButtonTooltip)" Text="!(loc.SetupTypeDlgCustomButton)"> | ||
14 | <Publish Property="WixUI_InstallMode" Value="InstallCustom">1</Publish> | ||
15 | </Control> | ||
16 | <Control Id="CompleteButton" Type="PushButton" X="40" Y="171" Width="80" Height="17" ToolTip="!(loc.SetupTypeDlgCompleteButtonTooltip)" Text="!(loc.SetupTypeDlgCompleteButton)"> | ||
17 | <Publish Property="WixUI_InstallMode" Value="InstallComplete">1</Publish> | ||
18 | <Publish Event="SetInstallLevel" Value="1000">1</Publish> | ||
19 | </Control> | ||
20 | <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" /> | ||
21 | <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUINext)" /> | ||
22 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)"> | ||
23 | <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish> | ||
24 | </Control> | ||
25 | <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.SetupTypeDlgBannerBitmap)" /> | ||
26 | <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> | ||
27 | <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> | ||
28 | <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.SetupTypeDlgTitle)" /> | ||
29 | <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.SetupTypeDlgDescription)" /> | ||
30 | <Control Id="TypicalText" Type="Text" X="60" Y="85" Width="280" Height="20" Text="!(loc.SetupTypeDlgTypicalText)" /> | ||
31 | <Control Id="CustomText" Type="Text" X="60" Y="138" Width="280" Height="30" Text="!(loc.SetupTypeDlgCustomText)" /> | ||
32 | <Control Id="CompleteText" Type="Text" X="60" Y="191" Width="280" Height="20" Text="!(loc.SetupTypeDlgCompleteText)" /> | ||
33 | </Dialog> | ||
34 | </UI> | ||
35 | </Fragment> | ||
36 | </Wix> | ||