diff options
Diffstat (limited to 'src/ext/UI/wixlib/CustomizeDlg.wxs')
-rw-r--r-- | src/ext/UI/wixlib/CustomizeDlg.wxs | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/ext/UI/wixlib/CustomizeDlg.wxs b/src/ext/UI/wixlib/CustomizeDlg.wxs new file mode 100644 index 00000000..12541d5b --- /dev/null +++ b/src/ext/UI/wixlib/CustomizeDlg.wxs | |||
@@ -0,0 +1,50 @@ | |||
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="CustomizeDlg" Width="370" Height="270" Title="!(loc.CustomizeDlg_Title)" TrackDiskSpace="yes"> | ||
8 | <Control Id="Tree" Type="SelectionTree" X="25" Y="85" Width="175" Height="115" Property="_BrowseProperty" Sunken="yes" TabSkip="no" Text="!(loc.CustomizeDlgTree)" /> | ||
9 | <Control Id="Browse" Type="PushButton" X="294" Y="210" Width="66" Height="17" Text="!(loc.CustomizeDlgBrowse)" HideCondition="Installed" DisableCondition="Installed"> | ||
10 | <Publish Event="SelectionBrowse" Value="BrowseDlg" /> | ||
11 | </Control> | ||
12 | <Control Id="Reset" Type="PushButton" X="10" Y="243" Width="81" Height="17" Text="!(loc.CustomizeDlgReset)"> | ||
13 | <Publish Event="Reset" Value="0" /> | ||
14 | <Subscribe Event="SelectionNoItems" Attribute="Enabled" /> | ||
15 | </Control> | ||
16 | <Control Id="DiskCost" Type="PushButton" X="91" Y="243" Width="100" Height="17" Text="!(loc.CustomizeDlgDiskCost)"> | ||
17 | <Publish Event="SpawnDialog" Value="DiskCostDlg" /> | ||
18 | <Subscribe Event="SelectionNoItems" Attribute="Enabled" /> | ||
19 | </Control> | ||
20 | <Control Id="Back" Type="PushButton" X="192" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" /> | ||
21 | <Control Id="Next" Type="PushButton" X="248" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)"> | ||
22 | <Subscribe Event="SelectionNoItems" Attribute="Enabled" /> | ||
23 | </Control> | ||
24 | <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)"> | ||
25 | <Publish Event="SpawnDialog" Value="CancelDlg" /> | ||
26 | </Control> | ||
27 | <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.CustomizeDlgBannerBitmap)" /> | ||
28 | <Control Id="Text" Type="Text" X="25" Y="55" Width="320" Height="20" Text="!(loc.CustomizeDlgText)" /> | ||
29 | <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> | ||
30 | <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> | ||
31 | <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.CustomizeDlgDescription)" /> | ||
32 | <Control Id="Title" Type="Text" X="15" Y="6" Width="210" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.CustomizeDlgTitle)" /> | ||
33 | <Control Id="Box" Type="GroupBox" X="210" Y="81" Width="150" Height="118" /> | ||
34 | <Control Id="ItemDescription" Type="Text" X="215" Y="90" Width="131" Height="50" Text="!(loc.CustomizeDlgItemDescription)"> | ||
35 | <Subscribe Event="SelectionDescription" Attribute="Text" /> | ||
36 | </Control> | ||
37 | <Control Id="ItemSize" Type="Text" X="215" Y="140" Width="131" Height="50" Text="!(loc.CustomizeDlgItemSize)"> | ||
38 | <Subscribe Event="SelectionSize" Attribute="Text" /> | ||
39 | </Control> | ||
40 | <Control Id="Location" Type="Text" X="90" Y="210" Width="200" Height="20" Text="!(loc.CustomizeDlgLocation)" HideCondition="Installed"> | ||
41 | <Subscribe Event="SelectionPath" Attribute="Text" /> | ||
42 | <Subscribe Event="SelectionPathOn" Attribute="Visible" /> | ||
43 | </Control> | ||
44 | <Control Id="LocationLabel" Type="Text" X="25" Y="210" Width="65" Height="10" Text="!(loc.CustomizeDlgLocationLabel)" HideCondition="Installed"> | ||
45 | <Subscribe Event="SelectionPathOn" Attribute="Visible" /> | ||
46 | </Control> | ||
47 | </Dialog> | ||
48 | </UI> | ||
49 | </Fragment> | ||
50 | </Wix> | ||