I have a WiX bootstrapper theme xml file, and I want to permanently disable a control. I have tried to set HexStyle
to the value of WS_DISABLED
(link). However the control is still enabled. Anyone knows if I can use HexStyle
or know of another way of having a control permanently disabled. I use the WixStandardBootstrapperApplication.RtfLicense
BootstrapperApplication.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
The possible solution is to find Id of this control and then create Variable with postfix "State". I hope it should work:
<Variable Name="EulaRicheditState" Type="string" Value="disable" />