Wix *.msi 安装程序的图标和标志

12
根据这个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="..\Import\WINDOWS_32px.ico" />
    <WixVariable Id="WixUIInfoIco" Value="..\Import\WINDOWS_32px.ico" />
    <WixVariable Id="WixUINewIco" Value="..\Import\WINDOWS_16px.ico" />
    <WixVariable Id="WixUIUpIco" Value="..\Import\WINDOWS_16px.ico" />
  </Product>
  <Fragment>
    <Directory Id="TARGETDIR" Name="SourceDir">
      <Directory Id="ProgramFiles64Folder">

然而,我仍然看不到图标的变化。
enter image description here

enter image description here


在Bootstrap中,一切都正常工作,并且所有图标都已更改。

2个回答

16

6

如果您想更改顶部横幅的图像,您需要创建一个493×58位图,作为对话框标题和文本的背景层。

因此,请在产品元素中添加以下行:

<WixVariable Id="WixUIBannerBmp" Value="$(var.ImagesDir)\[YOUR BITMAP HERE].bmp" />

您需要更改默认的WIX UI,您可以在此处找到其他需要更改的WixVariables。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接