我有一个单选按钮组和一个覆盖白色背景位图的复选框。该 单选按钮和复选框显示为默认背景控件 颜色(灰色)。有没有办法改变这些的背景颜色 控件在wix中是白色的?
答案 0 :(得分:3)
不用担心,这是众所周知的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>