30 lines
1.9 KiB
XML
30 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
|
|
<Fragment>
|
|
<UI>
|
|
<Dialog Id="ServiceAccountDialog" Width="370" Height="270" Title="[ProductName] Setup">
|
|
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="Next">
|
|
<Publish Event="NewDialog" Value="VerifyReadyDlg" />
|
|
</Control>
|
|
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="Back">
|
|
<Publish Event="NewDialog" Value="InstallDirDlg"/>
|
|
</Control>
|
|
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="Cancel">
|
|
<Publish Event="SpawnDialog" Value="CancelDlg"/>
|
|
</Control>
|
|
|
|
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="{\WixUI_Font_Title}Service Account Information" />
|
|
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="Please enter the credentials for the service account." />
|
|
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="yes" Text="WixUI_Bmp_Banner" />
|
|
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
|
|
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
|
|
|
|
<Control Id="UserLabel" Type="Text" X="45" Y="73" Width="100" Height="15" TabSkip="yes" Text="Service Account User:" />
|
|
<Control Id="UserEdit" Type="Edit" X="45" Y="90" Width="220" Height="18" Property="SERVICEACCOUNT_USER" />
|
|
|
|
<Control Id="PasswordLabel" Type="Text" X="45" Y="113" Width="100" Height="15" TabSkip="yes" Text="Service Account Password:" />
|
|
<Control Id="PasswordEdit" Type="Edit" X="45" Y="130" Width="220" Height="18" Property="SERVICEACCOUNT_PASSWORD" Password="yes" />
|
|
</Dialog>
|
|
</UI>
|
|
</Fragment>
|
|
</Wix> |