How to change background switch gray and checkbox in wix?

I have a group of radio buttons and a checkbox superimposed on a white background bitmap. radio buttons and checkboxes that look like background control by default color (gray). Is there a way to change the background color of these controls to be white in wix?

+5
source share
1 answer

Do not be afraid, this is a well-known limitation of WiX. In principle, the checkbox and radio buttons do not support transparency, so by default there will be a gray background.

, , / , , . , , .

, checkbox:

<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> 
+3

All Articles