hide textboxes on checkbox checked in WiX

喜欢而已 提交于 2020-01-13 10:46:27

问题


Is it possible to hide textboxes on checkbox checked in WiX?


回答1:


Thanks for your comments, the first comment helped me. It is done like this:

<Control Id="LoginTextBox" Type="Edit" Text="CM2" Height="17" Width="200" X="150" Y="198" Property="Login">
<Condition Action="hide" >CreateDBUsers&lt;&gt;1</Condition>
<Condition Action="show" >CreateDBUsers=1</Condition>
</Control>


来源:https://stackoverflow.com/questions/5500786/hide-textboxes-on-checkbox-checked-in-wix

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!