Hi

 

I am trying to achieve this UI in my installer page:

(*) Choice1

     [  ] Check1

     [  ] Check2

 

(  ) Choice2

     [  ] Check3

     [  ] Check4

 

Here's my code:

<Control Type="RadioButtonGroup" Property="CHOICES" Id="Choices" Width="200"
Height="95" X="15" Y="75">

    <RadioButtonGroup Property="CHOICES">

        <RadioButton Text="Choice1" Height="15" Value="1" Width="200" X="0"
Y="0" />

        <RadioButton Text="Choice2" Height="15" Value="0" Width="200" X="0"
Y="80" />

    </RadioButtonGroup>

</Control>

<Control Type="CheckBox" Id="Check1" Width="300" Height="15" X="35" Y="100"
Text="Check1" Property="CHECK1" CheckBoxValue="1" />

<Control Type="CheckBox" Id="Check2" Width="300" Height="15" X="35" Y="120"
Text="Check2" Property="CHECK2" CheckBoxValue="1" />

<Control Type="CheckBox" Id="Check3" Width="300" Height="15" X="35" Y="180"
Text="Check3" Property="CHECK3" CheckBoxValue="1" />

<Control Type="CheckBox" Id="Check4" Width="300" Height="15" X="35" Y="200"
Text="Check4" Property="CHECK4" CheckBoxValue="1" />

 

 

While it looks OK, I am unable to click on Check1 or Check2 because the
radio group overlaps them. The radio group spans from the top of Choice1 to
the bottom of Choice2.

 

I tried declaring the checkboxes before the radio group, and then it kind of
works, except that the checkboxes are hidden until I mouse over them. It
also doesn't give me the tab order I want.

 

So is there a way to have checkboxes between two radio buttons in Windows
Installer?

 

 

Thanks

Ivo

------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to