下面我们介绍一下duilib的另一种特性,那就是可以定制默认样式,这样做有什么好处呢?
假如我们有10个按钮,按钮样式都一样,如果用之前介绍的方式,则需要在每个Button节点都指定图片背景、宽度、高度等信息,一旦需要改动任何一个属性,则需要在10个按钮里面都改一次,所以为了方便修改,我们可以指定一个默认样式,就算有100个按钮,我们也只需要改一次属性。
方法如下: 给
XML如下(由于标题栏基本不再变化,所以后面的教程将省略那一段XML):
<Window size="800,600" mininfo="600,400" caption="0,0,0,32" sizebox="4,4,4,4">
<Default name="Button" value=" height="25" width="60" normalimage="file='BtnStyle\XP\button_nor.png'" hotimage="file='BtnStyle\XP\button_over.png'" pushedimage="file='BtnStyle\XP\button_down.png'" focusedimage="file='BtnStyle\XP\button_focus.png'" " />
<VerticalLayout bkcolor="#FFF0F0F0" bkcolor2="#FFAAAAA0">
<!-- 客户区 -->
<HorizontalLayout>
<Button text="XP" float="true" pos="20,14,0,0" height="25" />
<Button text="win7" float="true" pos="20,50,0,0" height="25" />
<Button text="百度杀毒" float="true" pos="20,86,0,0" height="25" />
<Button float="true" pos="20,132,0,0" height="25" />
</HorizontalLayout>
</VerticalLayout>
</Window>
文档信息
- 本文作者:zhupite
- 本文链接:https://zhupite.com/duilib/duilib-default-style.html
- 版权声明:自由转载-非商用-非衍生-保持署名(创意共享3.0许可证)