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