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