TA的每日心情 | 慵懒 4 天前 |
|---|
签到天数: 74 天 [LV.6]常住居民II
管理员
- 积分
- 2252
|
skin.xml中内容如下
- <?xml version="1.0" encoding="utf-8"?>
- <skin>
- <shape name="shp1" shape="rectangle">
- <corners radiusX="30" radiusY="30"/>
- <solid color="#ffffff"/>
- <size width="100" height="100"/>
- </shape>
- </skin>
复制代码
<SOUI name="window" title="布局"
bigIcon="ICON_LOGO:32" smallIcon="ICON_LOGO:16"
width="400" height="500" margin="1,5,5,5"
wndType="8"
toolWindow="1"
>
<root cache="1">
<window pos="0,0,-0,-0" colorBkgnd="rgb(33,35,50)" colorText="#ffffff" >
<caption pos="0,0,-0,30" focusable="1" drawfocusrect="0">
<text pos="5,4" name="txt_title">用户登录</text>
<imgbtn skin="_skin.sys.btn.close" pos="-45,0" tip="close" animate="1"/>
</caption>
<window pos="30,60,-30,-30" colorBkgnd="rgb(255,255,255)" colorText="#000000" round="50" skin="complex_shape" skin="shp1">
<text pos="5,24" name="txt_title">用户登录</text>
</window>
</window>
布局中直接使用shp1即可。
|
|