Files
es_build_deliv/windows_deliv/install/interface/PromptBrowse.wxs

37 lines
2.5 KiB
XML

<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<UI Id="UI.prompt_browse">
<Dialog Id="PromptBrowse" Width="333" Height="249" Title="[ProductName]" NoMinimize="yes">
<Control Id="Icon" Type="Icon" X="9" Y="13" Width="38" Height="38" FixedSize="yes" IconSize="48" Text="folder.ico" />
<Control Id="Title" Type="Text" X="56" Y="13" Width="268" Height="22" Transparent="yes" NoPrefix="yes">
<Text>[BigFont]Change current destination folder</Text>
</Control>
<Control Id="SubTitle" Type="Text" Height="13" Width="268" X="56" Y="35" Transparent="yes" NoPrefix="yes">
<Text>[SubTitleFont]Browse to the destination folder</Text>
</Control>
<Control Id="ComboLabel" Type="Text" X="9" Y="61" Width="44" Height="10" TabSkip="no" Text="&amp;Look in:" Transparent="yes" />
<Control Id="DirectoryCombo" Type="DirectoryCombo" X="45" Y="58" Width="210" Height="80" Property="_BrowseProperty" Fixed="yes" Remote="yes" Indirect="yes">
<Subscribe Event="IgnoreChange" Attribute="IgnoreChange" />
</Control>
<Control Id="Up" Type="PushButton" X="283" Y="58" Width="19" Height="19" Icon="yes" FixedSize="yes" IconSize="16" Text="up.bmp">
<Publish Event="DirectoryListUp" Value="0">1</Publish>
</Control>
<Control Id="NewFolder" Type="PushButton" X="305" Y="58" Width="19" Height="19" Icon="yes" FixedSize="yes" IconSize="16" Text="new.bmp">
<Publish Event="DirectoryListNew" Value="0">1</Publish>
</Control>
<Control Id="DirectoryList" Type="DirectoryList" X="9" Y="81" Width="315" Height="110" Property="_BrowseProperty" Sunken="yes" Indirect="yes" TabSkip="no"/>
<Control Id="PathLabel" Type="Text" X="9" Y="199" Width="56" Height="10" TabSkip="no" Text="&amp;Folder name:" Transparent="yes" />
<Control Id="PathEdit" Type="PathEdit" X="68" Y="196" Width="256" Height="17" Property="_BrowseProperty" Indirect="yes" />
<Control Id="OK" Type="PushButton" X="202" Y="223" Width="56" Height="17" Default="yes" Text="[Button_OK]">
<Publish Event="SetTargetPath" Value="[_BrowseProperty]">1</Publish>
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
<Control Id="Cancel" Type="PushButton" X="268" Y="223" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]">
<Publish Event="Reset" Value="0">1</Publish>
<Publish Event="EndDialog" Value="Return">1</Publish>
</Control>
</Dialog>
</UI>
</Fragment>
</Wix>