【问题标题】:WiX Compile Error Creating Custom DialogWiX 编译错误创建自定义对话框
【发布时间】:2011-05-28 20:35:28
【问题描述】:

我一直在尝试将自定义对话框插入到WixUI_InstallDir UI 序列中。我有一个名为 Product.wxs 的“主”文件和另一个名为 InstallTypeDlg.wxs 的文件中的自定义对话框 - 两者都存在于 Installer.wixproj 中。

InstallTypeDlg.wxs 内,我有以下内容:

<?xml version="1.0" encoding="UTF-8"?>
  <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Fragment>
      <UI>
        <Dialog Id="InstallTypeDlg" Width="370" Height="270" Title="Select Install Type">

          <Control Id="InstallTypeSelection" Type="RadioButtonGroup" X="20" Y="55" Width="330" Height="120" Property="InstallType">
            <RadioButtonGroup Property="InstallType">
              <RadioButton Text="Type 01" Value="1" X="5" Y="0" Width="250" Height="15" />
              <RadioButton Text="Type 02" Value="2" X="5" Y="20" Width="250" Height="15" />
            </RadioButtonGroup>
          </Control>

          <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
          <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" />
          <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
            <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
          </Control>

          <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.SetupTypeDlgBannerBitmap)" />
          <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
          <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
          <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.SetupTypeDlgTitle)" />
          <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.SetupTypeDlgDescription)" />
          <Control Id="TypicalText" Type="Text" X="60" Y="85" Width="280" Height="20" Text="!(loc.SetupTypeDlgTypicalText)" />
        </Dialog>
      </UI>
    </Fragment>
  </Wix>

我在Product.wxs 中引用了这个自定义对话框:

<Property Id="WIXUI_INSTALLDIR" Value="INSTALLLOCATION" />

<UI Id="MyWixUI_InstallDir">
  <UIRef Id="WixUI_InstallDir" />

  <DialogRef Id="InstallTypeDlg" />

  <Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="InstallTypeDlg" Order="4">1</Publish>
  <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallTypeDlg">1</Publish>
</UI>

现在,当我编译这个项目时,我收到以下错误:

InstallTypeDlg.wxs(8,0): error LGHT0094: Unresolved reference to symbol 'Property:InstallType' in section 'Fragment:'.

我不知道为什么。我忘记了什么吗? :-/

我对 WiX 还很陌生,昨天才开始使用它。任何帮助将不胜感激。

我正在使用Wix 3.5.2415.0

【问题讨论】:

    标签: user-interface wix windows-installer wix3.5


    【解决方案1】:

    可能,您只需要在使用它之前定义该属性,即:

    <Property Id="InstallType" Value="some default value" />
    

    【讨论】:

    • 工作,谢谢!我读过的教程没有提到这一点,我认为该属性是从 标记 自动创建的
    • 很好用。通常,如果你得到这样的错误,这意味着你必须定义被引用的实体。
    • 谢谢。我已经定义了该属性,但没有为其分配默认值。这一切都不同了。
    • 谢谢。和大脚一样。需要预先设置属性的值。
    猜你喜欢
    • 1970-01-01
    • 2013-12-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-01-24
    • 1970-01-01
    相关资源
    最近更新 更多