source: valtobtest/subversion-1.6.2/packages/windows-WiX/BuildSubversion/WixDialog/ReadyDlg.wxs @ 3

Last change on this file since 3 was 3, checked in by valtob, 15 years ago

subversion source 1.6.2 as test

File size: 1.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3    Copyright (c) Microsoft Corporation.  All rights reserved.
4-->
5<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
6    <Fragment>
7        <UI>
8            <Dialog Id="ReadyDlg" Width="370" Height="270" Title="!(loc.ReadyDlg_Title)">
9                        <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
10                <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="!(loc.WixUINext)">
11                        <Publish Event="SpawnWaitDialog" Value="WaitForCostingDlg">CostingComplete = 1</Publish>
12                </Control>
13                <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
14                        <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
15                </Control>
16                <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.ReadyDlgBannerBitmap)" />
17                <Control Id="InfoText" Type="ScrollableText" X="20" Y="70" Width="330" Height="151" Sunken="yes" TabSkip="no" Text="!(loc.ReadyDlgDetail)" />
18                <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="2" />
19                <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="2" />
20                <Control Id="Description" Type="Text" X="20" Y="21" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.ReadyDlgDescription)" />
21                <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.ReadyDlgTitle)" />
22                <Control Id="Instruction" Type="Text" Height="15" Width="280" X="20" Y="53" Text="!(loc.ReadyDlgInstruction)" />
23                </Dialog>
24        </UI>
25    </Fragment>
26</Wix>
Note: See TracBrowser for help on using the repository browser.