自定义Wix用户界面中的InstallScopeDlg无法正常工作 [英] InstallScopeDlg in Custom Wix UI not working

查看:85
本文介绍了自定义Wix用户界面中的InstallScopeDlg无法正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我用wix开发了一个安装程序,现在我需要询问用户它的AllUser还是perUser.经过长期的研究,我发现InstallScopeDLg可以实现这一目的.但是我在wix中添加了自定义UI,而我不是无法在WIX中使用此自定义UI添加InstallScopeDlg.

Hi i have developed an setup with wix and now i need to ask users wether its AllUser or perUser.After a long research i found that InstallScopeDLg can make it possible.But I have added custom UI with my wix and i wasn't able to add InstallScopeDlg with this custom UI in WIX.

    <Publish Dialog="LicenseAgreementDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish>
        <Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" Value="ReadmeDlg" Order="2">LicenseAccepted = "1"</Publish>

      <Publish Dialog="MyInstallScopeDlg" Control="Back" Event="NewDialog" Value="LicenseAgreementDlg">1</Publish>
      <Publish Dialog="MyInstallScopeDlg" Control="Next" Event="NewDialog" Value="ReadmeDlg" Order="2"></Publish>


      <Publish Dialog="ReadmeDlg" Control="Back" Event="NewDialog" Value="LicenseAgreementDlg">1</Publish>
        <Publish Dialog="ReadmeDlg" Control="Next" Event="NewDialog" Value="CustomizeDlg" Order="2"></Publish>

这是我的InstallScopeDlg代码

and this is my InstallScopeDlg code

<?xml version="1.0" encoding="UTF-8"?><!--
Copyright (c) Microsoft Corporation.  All rights reserved.-->
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  <Fragment>
    <UI>
  <Dialog Id="MyInstallScopeDlg" Width="370" Height="270" Title="!(loc.InstallScopeDlg_Title)" KeepModeless="yes">
    <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.InstallScopeDlgBannerBitmap)" />
    <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="Description" Type="Text" X="25" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.InstallScopeDlgDescription)" />
    <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.InstallScopeDlgTitle)" />
    <Control Id="BothScopes" Type="RadioButtonGroup" X="20" Y="55" Width="330" Height="120" Property="WixAppFolder" Hidden="yes">
      <RadioButtonGroup Property="WixAppFolder">
        <RadioButton Value="WixPerUserFolder" X="0" Y="0" Width="295" Height="16" Text="!(loc.InstallScopeDlgPerUser)" />
        <RadioButton Value="WixPerMachineFolder" X="0" Y="60" Width="295" Height="16" Text="!(loc.InstallScopeDlgPerMachine)" />
      </RadioButtonGroup>
      <Condition Action="show">Privileged AND (!(wix.WixUISupportPerUser) AND !(wix.WixUISupportPerMachine))</Condition>
    </Control>
    <Control Id="PerUserDescription" Type="Text" X="33" Y="70" Width="300" Height="36" Hidden="yes" Text="!(loc.InstallScopeDlgPerUserDescription)">
      <Condition Action="show">!(wix.WixUISupportPerUser)</Condition>
    </Control>
    <Control Id="NoPerUserDescription" Type="Text" X="33" Y="70" Width="300" Height="36" Hidden="yes" Text="!(loc.InstallScopeDlgNoPerUserDescription)">
      <Condition Action="show">NOT !(wix.WixUISupportPerUser)</Condition>
    </Control>
    <Control Id="PerMachineDescription" Type="Text" X="33" Y="131" Width="300" Height="36" Hidden="yes" Text="!(loc.InstallScopeDlgPerMachineDescription)">
      <Condition Action="show">Privileged</Condition>
    </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>
  </Dialog>
</UI>

以及InstallScopeDlg中的RadioButtonGroup Property ="WixAppFolder"

and for RadioButtonGroup Property="WixAppFolder" in InstallScopeDlg

我已经在product.wxs文件中添加了

i have added in product.wxs file

并得到错误代码

错误10 Windows Installer XML变量 !(wix.WixUISupportPerUser)是未知的.请确保变量为 通过WixVariable元素在light.exe的命令行上声明, 或使用语法内联!(wix.WixUISupportPerUser =一些值 不包含括号).

Error 10 The Windows Installer XML variable !(wix.WixUISupportPerUser) is unknown. Please ensure the variable is declared on the command line for light.exe, via a WixVariable element, or inline using the syntax !(wix.WixUISupportPerUser=some value which doesn't contain parenthesis).

推荐答案

因此,我们首先需要在myinstallscopedlg.wxs的fragment部分下声明其组件.

Hence it we need to initially declare its components under the fragment section in your myinstallscopedlg.wxs

     <?xml version="1.0" encoding="UTF-8"?><!--
Copyright (c) Microsoft Corporation.  All rights reserved.-->
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Fragment>

    <WixVariable Id="WixUISupportPerUser" Value="1" Overridable="yes" />
    <WixVariable Id="WixUISupportPerMachine" Value="1" Overridable="yes" />

          <UI>
                <Dialog Id="MyInstallScopeDlg" Width="370" Height="270" Title="!(loc.InstallScopeDlg_Title)" KeepModeless="yes">

执行此错误 Windows Installer XML变量!(wix.WixUISupportPerUser)未知.将得到解决

这篇关于自定义Wix用户界面中的InstallScopeDlg无法正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆