aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/BrowseDlg.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixlib/BrowseDlg.wxs')
-rw-r--r--src/wixlib/BrowseDlg.wxs38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/wixlib/BrowseDlg.wxs b/src/wixlib/BrowseDlg.wxs
new file mode 100644
index 00000000..9eaa3f42
--- /dev/null
+++ b/src/wixlib/BrowseDlg.wxs
@@ -0,0 +1,38 @@
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="BrowseDlg" Width="370" Height="270" Title="!(loc.BrowseDlg_Title)">
9 <Control Id="PathEdit" Type="PathEdit" X="25" Y="202" Width="320" Height="18" Property="_BrowseProperty" Indirect="yes" />
10 <Control Id="OK" Type="PushButton" X="240" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUIOK)">
11 <Publish Event="SetTargetPath" Value="[_BrowseProperty]">1</Publish>
12 <Publish Event="EndDialog" Value="Return">1</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="Reset" Value="0">1</Publish>
16 <Publish Event="EndDialog" Value="Return">1</Publish>
17 </Control>
18 <Control Id="ComboLabel" Type="Text" X="25" Y="58" Width="44" Height="10" TabSkip="no" Text="!(loc.BrowseDlgComboLabel)" />
19 <Control Id="DirectoryCombo" Type="DirectoryCombo" X="70" Y="55" Width="220" Height="80" Property="_BrowseProperty" Indirect="yes" Fixed="yes" Remote="yes">
20 <Subscribe Event="IgnoreChange" Attribute="IgnoreChange" />
21 </Control>
22 <Control Id="WixUI_Bmp_Up" Type="PushButton" X="298" Y="55" Width="19" Height="19" ToolTip="!(loc.BrowseDlgWixUI_Bmp_UpTooltip)" Icon="yes" FixedSize="yes" IconSize="16" Text="!(loc.BrowseDlgWixUI_Bmp_Up)">
23 <Publish Event="DirectoryListUp" Value="0">1</Publish>
24 </Control>
25 <Control Id="NewFolder" Type="PushButton" X="325" Y="55" Width="19" Height="19" ToolTip="!(loc.BrowseDlgNewFolderTooltip)" Icon="yes" FixedSize="yes" IconSize="16" Text="!(loc.BrowseDlgNewFolder)">
26 <Publish Event="DirectoryListNew" Value="0">1</Publish>
27 </Control>
28 <Control Id="DirectoryList" Type="DirectoryList" X="25" Y="83" Width="320" Height="98" Property="_BrowseProperty" Sunken="yes" Indirect="yes" TabSkip="no" />
29 <Control Id="PathLabel" Type="Text" X="25" Y="190" Width="320" Height="10" TabSkip="no" Text="!(loc.BrowseDlgPathLabel)" />
30 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.BrowseDlgBannerBitmap)" />
31 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
32 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
33 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.BrowseDlgDescription)" />
34 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.BrowseDlgTitle)" />
35 </Dialog>
36 </UI>
37 </Fragment>
38</Wix>