zoukankan      html  css  js  c++  java
  • [Wix] Text控件显示

      <Control Id="DlgTitle" Type="Text" X="10" Y="5" Width="292" Height="25" Hidden="yes" Transparent="yes">
       <Text>{\MSSansBold10}自定义安装</Text>
       <Condition Action="show">ProgressType0 = "Install"</Condition>
      </Control>
      <Control Id="DlgTitle2" Type="Text" X="10" Y="5" Width="292" Height="25" Hidden="yes" Transparent="yes">
       <Text>{\MSSansBold10}修改安装</Text>
       <Condition Action="show">ProgressType0 = "Modify"</Condition>
      </Control>

    等价于:
      <Control Id="DlgTitle" Type="Text" X="10" Y="5" Width="292" Height="25" Transparent="yes">
       <Text>{\MSSansBold10}自定义安装</Text>
       <Condition Action="hide">ProgressType0 &lt;&gt; "Install"</Condition>
      </Control>
      <Control Id="DlgTitle2" Type="Text" X="10" Y="5" Width="292" Height="25" Transparent="yes">
       <Text>{\MSSansBold10}修改安装</Text>
       <Condition Action="hide">ProgressType0 &lt;&gt; "Modify"</Condition>
      </Control>

    注意红色的地方,特别是:Hidden=”yes”,我当时没注意这个,弄了半天也搞不清楚为什么“自定义安装“与“修改安装”会叠在一起,而另一页不会。
  • 相关阅读:
    内存溢出
    3.设计模式----TemplateMethod模式
    tomcat 编码问题
    ibatis实现Iterate的使用 (转)
    2.设计模式---Adapter模式
    1.设计模式-------Iterator
    PHP 下载远程图片
    mysql调优 参数说明
    mySQL内存及虚拟内存优化设置
    Firebug入门指南
  • 原文地址:https://www.cnblogs.com/huqingyu/p/55240.html
Copyright © 2011-2022 走看看