使用三个单选按钮时Wix安装程序出现错误2878



我使用wix工具集为WPF应用程序创建安装程序。当我想使用三个单选按钮时,我得到错误:

"安装程序在安装此时遇到意外错误包裹这可能表明此程序包有问题。错误代码是2878〃;。

但当我使用两个单选按钮时,一切都很好。这是我的代码:

<UI>
<Property Id="AppType" Value="False"/>
<Dialog Id="PoolSettingsDlg" Width="370" Height="270" Title="Application Pool Settings - [ProductName]" NoMinimize="yes">

<Control Type="RadioButtonGroup" Property="AppType" Id="AUTH" Width="144" Height="100" X="45" Y="100">
<RadioButtonGroup Property="AppType">
<RadioButton Text="!(loc.AppTypeDefault)" Height="15" Value="False" Width="150" X="0" Y="0" />
<RadioButton Text="!(loc.AppTypeCallCenter)" Height="15" Value="False" Width="150" X="0" Y="15" />
<RadioButton Text="!(loc.AppTypeFoodPoint)" Height="15" Value="True" Width="150" X="0" Y="30" />
</RadioButtonGroup>
</Control>
</Dialog>
</UI>

RadioButtonGroup中RadioButtons的值属性必须不同。2xFalse不是,因此是错误。我会选择Value=Default、CallCenter、FoodPoint。

相关内容

  • 没有找到相关文章

最新更新