Wix * .msi安装程序图标和徽标
根据这个http://wix.tramontana.co.hu/tutorial/user-interface/ui-wizardry
我创建了以下代码
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="Installer" Language="1033" Version="0.0.1.4" Manufacturer="my" UpgradeCode="*">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate EmbedCab="yes" />
<!--icon for Add/Remove Programs-->
<Icon Id="WINDOWS.ico" SourceFile="..WINDOWS.ico" />
<Property Id="ARPPRODUCTICON" Value="WINDOWS.ico" />
<Feature Id="ProductFeature" Title="Installer" Level="1" Description="The complete installation" Display="expand" ConfigurableDirectory="INSTALLFOLDER">
<ComponentRef Id="ProgramMenuDir" />
<ComponentGroupRef Id="ExportReleaseComponentGroup" />
</Feature>
<!--Internal tools-->
<Feature Id="Internal_Calibration_tools" Title="Internal Calibration tools" Level="1000" Description="Internal tools">
<ComponentGroupRef Id="group_Internal_Calibration_tools" />
</Feature>
<UIRef Id="WixUI_Mondo"></UIRef>
<UIRef Id="WixUI_ErrorProgressText" />
<WixVariable Id="WixUIExclamationIco" Value="..ImportWINDOWS_32px.ico" />
<WixVariable Id="WixUIInfoIco" Value="..ImportWINDOWS_32px.ico" />
<WixVariable Id="WixUINewIco" Value="..ImportWINDOWS_16px.ico" />
<WixVariable Id="WixUIUpIco" Value="..ImportWINDOWS_16px.ico" />
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFiles64Folder">
不过,我仍然看不到图标的变化。
在bootstrap一切工作正常,所有的图标都改变了。
你应该添加这个。 应该添加整个顶部横幅图像。
<WixVariable Id="WixUIBannerBmp" Value="..imagesbanner.bmp" />
确保其尺寸正确并且必须是位图图像。
参考:http://wixtoolset.org/documentation/manual/v3/wixui/wixui_customizations.html
如果您想要更改顶级横幅,您将显示一幅图像,您需要创建一个493×58位图,该位图将作为对话标题和文本的背景层。
因此,将这一行添加到Product元素中:
<WixVariable Id="WixUIBannerBmp" Value="$(var.ImagesDir)[YOUR BITMAP HERE].bmp" />
你会发现其他的WixVariables你需要在这里改变默认的WIX UI
链接地址: http://www.djcxy.com/p/61637.html