29 lines
1.8 KiB
XML
29 lines
1.8 KiB
XML
<?xml version="1.0"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Fragment>
|
|
<UI Id="UI.dialog_progress">
|
|
<Dialog Id="DialogProgress" Width="375" Height="220" Title="[ProductName]" Modeless="yes">
|
|
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="375" Height="220" TabSkip="no" Text="backdrop.bmp" />
|
|
<Control Id="Title" Type="Text" X="56" Y="13" Width="310" Height="57" Transparent="yes" NoPrefix="yes">
|
|
<Text>[BigFont][ProgressType1] [ProductName]...</Text>
|
|
</Control>
|
|
<Control Id="Description" Type="Text" X="9" Y="73" Width="300" Height="20" Transparent="yes" NoPrefix="yes">
|
|
<Text>Please wait while [ProductName] is [ProgressType2].</Text>
|
|
</Control>
|
|
<Control Id="ActionText" Type="Text" X="70" Y="107" Width="265" Height="10" Transparent="yes" NoPrefix="yes">
|
|
<Subscribe Event="ActionText" Attribute="Text" />
|
|
</Control>
|
|
<Control Id="ProgressBar" Type="ProgressBar" X="35" Y="122" Width="300" Height="18" ProgressBlocks="yes" Text="Progress done">
|
|
<Subscribe Event="SetProgress" Attribute="Progress" />
|
|
</Control>
|
|
<Control Id="StatusLabel" Type="Text" X="35" Y="107" Width="35" Height="10" Text="Status:" Transparent="yes" NoPrefix="yes"/>
|
|
<Control Id="Back" Type="PushButton" X="187" Y="193" Width="56" Height="17" Disabled="yes" Text="[Button_Back]" />
|
|
<Control Id="Next" Type="PushButton" X="242" Y="193" Width="56" Height="17" Default="yes" Disabled="yes" Text="[Button_Next]" />
|
|
<Control Id="Cancel" Type="PushButton" X="309" Y="193" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]">
|
|
<Publish Event="SpawnDialog" Value="PromptCancelInstall">1</Publish>
|
|
</Control>
|
|
</Dialog>
|
|
</UI>
|
|
</Fragment>
|
|
</Wix>
|