LicenseAgreementDlg_HK.wxs (2395B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 4 <Fragment> 5 <UI> 6 <Dialog Id="LicenseAgreementDlg_HK" Width="370" Height="270" Title="!(loc.LicenseAgreementDlg_Title)"> 7 <Control Id="LicenseAcceptedCheckBox" Type="CheckBox" X="20" Y="207" Width="330" Height="18" CheckBoxValue="1" Property="LicenseAccepted" 8 Text="!(loc.LicenseAgreementDlgLicenseAcceptedCheckBox)" /> 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" Default="yes" Text="!(loc.WixUINext)"> 11 <Publish Event="SpawnWaitDialog" Value="WaitForCostingDlg">CostingComplete = 1</Publish> 12 <Condition Action="disable"><![CDATA[LicenseAccepted <> "1"]]></Condition> 13 <Condition Action="enable">LicenseAccepted = "1"</Condition> 14 </Control> 15 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)"> 16 <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish> 17 </Control> 18 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.LicenseAgreementDlgBannerBitmap)" /> 19 <Control Id="LicenseText" Type="ScrollableText" X="20" Y="60" Width="330" Height="140" Sunken="yes" TabSkip="no"> 20 21 {{if gt (.License | len) 0}} 22 <Text SourceFile="{{.License}}" /> 23 {{end}} 24 25 </Control> 26 <Control Id="Print" Type="PushButton" X="112" Y="243" Width="56" Height="17" Text="!(loc.WixUIPrint)"> 27 <Publish Event="DoAction" Value="WixUIPrintEula">1</Publish> 28 </Control> 29 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> 30 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> 31 <Control Id="Description" Type="Text" X="25" Y="23" Width="340" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.LicenseAgreementDlgDescription)" /> 32 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.LicenseAgreementDlgTitle)" /> 33 </Dialog> 34 </UI> 35 </Fragment> 36 </Wix>