Wix как добавить вторую гиперссылку для eula - PullRequest
0 голосов
/ 28 декабря 2018

У меня есть один файл eula.html и один файл eula.pdf, и я хочу добавить оба из них в мой загрузчик. Я добавил один из них, но как добавить второй.

Это мой bundle.wxs

<BootstrapperApplicationRef  Id="WixExtendedBootstrapperApplication.HyperlinkLicense">
  <bal:WixExtendedBootstrapperApplication LicenseFile="Resources\EULA.pdf" 



  />
  <Payload SourceFile="Resources\Eula.pdf" />
  <Payload Name="1033\thm.wxl" Compressed="yes" SourceFile="1033\thm.wxl"   />
  <Payload SourceFile="Resources\Logo.png"/>
  <Payload SourceFile="Resources\LogoSide.png"/>
  <Payload SourceFile="Resources\Eula.html" />
</BootstrapperApplicationRef>

<WixVariable Id="WixExtbaLogo" Value="Resources\Logo.png" />


<Variable Name="RadioClient" Type="numeric" Value="0" />
<Variable Name="RadioServer" Type="numeric" Value="0" />
<Variable Name="RadioFull" Type="numeric" Value="1" />

Это файл моей темы.

 <Page Name="Install">


      <Hypertext Name="EulaHyperlink" X="11" Y="80" Width="200" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallLicenseLinkText)</Hypertext>

      <Checkbox Name="EulaAcceptCheckbox" X="-11" Y="-41" Width="260" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallAcceptCheckbox)</Checkbox>
        <Button Name="OptionsButton"  Visible="no" X="-171" Y="-11" Width="75" Height="23" TabStop="yes" FontId="0" HideWhenDisabled="yes">#(loc.InstallOptionsButton)</Button>
        <Button Name="InstallButton" X="-91" Y="-11" Width="75" Height="23" TabStop="yes" FontId="0">#(loc.InstallInstallButton)</Button>
        <Button Name="WelcomeCancelButton" X="-11" Y="-11" Width="75" Height="23" TabStop="yes" FontId="0">#(loc.InstallCloseButton)</Button>
...