7

我有一个单选按钮组和一个覆盖白色背景位图的复选框。单选按钮和复选框显示为默认背景控件颜色(灰色)。有没有办法在wix中将这些控件的背景颜色更改为白色?

4

1 回答 1

4

不用担心,这是众所周知的 WiX 限制。基本上复选框和单选按钮都不支持透明度,因此默认为灰色背景。

解决方法是更改​​背景位图以适合这些控件的灰色背景,或者创建不带文本的单选/复选框按钮,然后在它们旁边的文本应该位于的位置创建透明文本标签。唯一的缺点是无法再通过单击文本来选择或取消选择控件。

这是应用于复选框控件的第二个建议的小示例:

<Control Id="LaunchCheckBox" Type="CheckBox" X="134" Y="126" Width="10" Height="10" Property="LAUNCHAPPONEXIT" CheckBoxValue="1" Text=" " > 
<Condition Action="show">NOT Installed</Condition> 
</Control> 
<Control Id="LaunchText" Type="Text" X="149" Y="126" Width="170" Height="17" Text="Launch $(var.ProductNameForDisplay)" Transparent="yes" > 
<Condition Action="show">NOT Installed</Condition> 
</Control> 
于 2013-04-04T03:39:01.937 回答