本文介绍了Wix Burn - 自定义模板的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法在安装程序中更改那个红色的 CD 图片?
Is there a way to change that redish CD picture in the installer?
这是 Burn 项目的代码:
Here's the code of the Burn project:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle Name="Bootstrapper" Version="1.0.0.0" Manufacturer="VilmosNagy" UpgradeCode="844c755f-f02b-4dd3-8b9c-af2498f3128c">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" />
<Chain>
<MsiPackage SourceFile="..\Setup\bin\Release\Setup.msi" />
</Chain>
</Bundle>
</Wix>
谢谢!
推荐答案
是的,您需要设置 LogoFile.BootstrapperApplicationRef 内部添加
Yes, you will want to set the LogoFile. Inside of BootstrapperApplicationRef add
<WixStandardBootstrapperApplication LogoFile="path to your logo.bmp"/>
有关 WixStandardBootstrapperApplication
这篇关于Wix Burn - 自定义模板的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!