How do I add a combo box to a WiX Bootstrapper?
I use HyperlinkLargeTheme.xml
and have tried to add a combo box to the install page.
It appears on the dialog, but I don't know how to add values to it.
<Page Name="Install">
<Text Name="InstallLanguge" X="20" Y="200" Width="100" Height="17" FontId="3" DisablePrefix="yes" HideWhenDisabled="yes">Select Language</Text>
<Combobox X="130" Y="200" Width="150" Height="17" FontId="3" Name="Language">
<ListItem Text="English" Value="eng" />
<ListItem Text="Japanese" Value="jp" />
<ListItem Text="Chinese" Value="cn" />
</Combobox>
<Button Name="InstallButton" X="-91" Y="-11" Width="75" Height="23" TabStop="yes" FontId="0">#(loc.InstallInstallButton)</Button>
</Page>