How to remove white background using Wix button and Checkbox property?

I am trying to make an installer. Thw checkBox and the button I added have a white background. How can I get rid of these white spaces?

   <Control Id="DesktopShortcutCheckBox"  Type="CheckBox" X="80" Y="200" Width="290" Height="17" Property="INSTALLDESKTOPSHORTCUT" 
             CheckBoxValue="1" Text="Create a shortcut for this program on the desktop." />

 <Control Id="Back" Type="PushButton" Text="Back" X="215"  Y="243"  Width="60" Height="17">
      <Publish Event="NewDialog"  Value="SecondDlg" />
    </Control>

enter image description here

Thnx

+5
source share
1 answer

Unfortunately, the Windows Installer user interface does not support transparent flags. You have several options:

  • Check the box for a place that does not cover the background. For example, there is usually a background in the setup dialog, then a horizontal line at the bottom of the image, and then buttons below the horizontal line. Checking the box below the line with the buttons looks good (it looks standard) and can use the standard background color.

  • , . , , . , , no-no. .

  • . Burn in WiX v3.6+. wixstdba XML . , Windows.

. , .

+9

All Articles