flex自定义按钮皮肤示例附图
网络编程 2021-07-05 11:32www.168986.cn编程入门
这篇文章主要介绍了flex如何自定义按钮皮肤,需要的朋友可以参考下
先看效果图
其中Test.mxml为
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe./mxml/2009"
xmlns:s="library://ns.adobe./flex/spark"
xmlns:mx="library://ns.adobe./flex/mx" minWidth="955" minHeight="600">
<fx:Declarations>
<!-- 将非可视元素(例如服务、值对象)放在此处 -->
</fx:Declarations>
<mx:HBox horizontalCenter="0" verticalCenter="1">
<s:Button id="rightButton" skinClass="ponents.RightButtonSkin" />
<s:Button id="cancelButton" skinClass="ponents.CancelButtonSkin" />
<s:Button id="newStyleButton" skinClass="ponents.NewStyleButtonSkin"/>
<s:Button id="StyleButton" skinClass="ponents.StyleButtonSkin"/>
</mx:HBox>
</s:Application>
RightButtonSkin.mxml(确定按钮皮肤)
<?xml version="1.0" encoding="utf-8"?>
<s:Skin xmlns:fx="http://ns.adobe./mxml/2009"
xmlns:s="library://ns.adobe./flex/spark" alpha.disabled=".5">
<!-- states -->
<s:states>
<s:State name="up" />
<s:State name="over" />
<s:State name="down" />
<s:State name="disabled" />
</s:states>
<!-- border and fill -->
<s:Rect id="rect" radiusX="4" radiusY="4" ="0" right="0"
bottom="0" left="0">
<s:fill>
<s:SolidColor color="0xFAFAFA" color.over="0xEEEEEE"
color.down="0xEEEEEE"/>
</s:fill>
<s:stroke>
<s:SolidColorStroke color="0xCCCCCC" weight="1"/>
</s:stroke>
</s:Rect>
<!-- highlight on -->
<s:Rect radiusX="4" radiusY="4" ="2" right="2" left="2"
height="50%">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0xFFFFFF" alpha=".5"/>
<s:GradientEntry color="0xFFFFFF" alpha=".1"/>
</s:LinearGradient>
</s:fill>
</s:Rect>
<s:Label text="确定" color="0x131313"
textAlign="center"
fontFamily="宋体"
verticalAlign="middle"
horizontalCenter="0" verticalCenter="1"
left="30" right="30" ="8" bottom="8"
/>
</s:Skin>
NewStyleButtonSkin.mxml(新建按钮皮肤)
ps新建按钮上面那个icon是画上去的
<?xml version="1.0" encoding="utf-8"?>
<s:Skin xmlns:fx="http://ns.adobe./mxml/2009"
xmlns:s="library://ns.adobe./flex/spark" alpha.disabled=".5">
<!-- states -->
<s:states>
<s:State name="up" />
<s:State name="over" />
<s:State name="down" />
<s:State name="disabled" />
</s:states>
<!-- border and fill -->
<s:Rect id="rect" radiusX="4" radiusY="4" ="0" right="0"
bottom="0" left="0">
<s:fill>
<s:SolidColor color="0xFAFAFA" color.over="0xEEEEEE" color.down="0xEEEEEE"/>
</s:fill>
<s:stroke>
<s:SolidColorStroke color="0xCCCCCC" weight="1"/>
</s:stroke>
</s:Rect>
<!-- highlight on -->
<s:Rect radiusX="4" radiusY="4" ="2" right="2" left="2"
height="50%">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0xFFFFFF" alpha=".5"/>
<s:GradientEntry color="0xFFFFFF" alpha=".1"/>
</s:LinearGradient>
</s:fill>
</s:Rect>
<s:Graphic>
<s:BitmapImage source="assets/round_plus2.png" left="8" ="6"/>
</s:Graphic>
<s:Label text="新建样式" color="0x131313"
fontFamily="宋体"
left="30" right="20" ="8" bottom="8"
/>
</s:Skin>
其中Test.mxml为
代码如下:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe./mxml/2009"
xmlns:s="library://ns.adobe./flex/spark"
xmlns:mx="library://ns.adobe./flex/mx" minWidth="955" minHeight="600">
<fx:Declarations>
<!-- 将非可视元素(例如服务、值对象)放在此处 -->
</fx:Declarations>
<mx:HBox horizontalCenter="0" verticalCenter="1">
<s:Button id="rightButton" skinClass="ponents.RightButtonSkin" />
<s:Button id="cancelButton" skinClass="ponents.CancelButtonSkin" />
<s:Button id="newStyleButton" skinClass="ponents.NewStyleButtonSkin"/>
<s:Button id="StyleButton" skinClass="ponents.StyleButtonSkin"/>
</mx:HBox>
</s:Application>
RightButtonSkin.mxml(确定按钮皮肤)
代码如下:
<?xml version="1.0" encoding="utf-8"?>
<s:Skin xmlns:fx="http://ns.adobe./mxml/2009"
xmlns:s="library://ns.adobe./flex/spark" alpha.disabled=".5">
<!-- states -->
<s:states>
<s:State name="up" />
<s:State name="over" />
<s:State name="down" />
<s:State name="disabled" />
</s:states>
<!-- border and fill -->
<s:Rect id="rect" radiusX="4" radiusY="4" ="0" right="0"
bottom="0" left="0">
<s:fill>
<s:SolidColor color="0xFAFAFA" color.over="0xEEEEEE"
color.down="0xEEEEEE"/>
</s:fill>
<s:stroke>
<s:SolidColorStroke color="0xCCCCCC" weight="1"/>
</s:stroke>
</s:Rect>
<!-- highlight on -->
<s:Rect radiusX="4" radiusY="4" ="2" right="2" left="2"
height="50%">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0xFFFFFF" alpha=".5"/>
<s:GradientEntry color="0xFFFFFF" alpha=".1"/>
</s:LinearGradient>
</s:fill>
</s:Rect>
<s:Label text="确定" color="0x131313"
textAlign="center"
fontFamily="宋体"
verticalAlign="middle"
horizontalCenter="0" verticalCenter="1"
left="30" right="30" ="8" bottom="8"
/>
</s:Skin>
NewStyleButtonSkin.mxml(新建按钮皮肤)
ps新建按钮上面那个icon是画上去的
代码如下:
<?xml version="1.0" encoding="utf-8"?>
<s:Skin xmlns:fx="http://ns.adobe./mxml/2009"
xmlns:s="library://ns.adobe./flex/spark" alpha.disabled=".5">
<!-- states -->
<s:states>
<s:State name="up" />
<s:State name="over" />
<s:State name="down" />
<s:State name="disabled" />
</s:states>
<!-- border and fill -->
<s:Rect id="rect" radiusX="4" radiusY="4" ="0" right="0"
bottom="0" left="0">
<s:fill>
<s:SolidColor color="0xFAFAFA" color.over="0xEEEEEE" color.down="0xEEEEEE"/>
</s:fill>
<s:stroke>
<s:SolidColorStroke color="0xCCCCCC" weight="1"/>
</s:stroke>
</s:Rect>
<!-- highlight on -->
<s:Rect radiusX="4" radiusY="4" ="2" right="2" left="2"
height="50%">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0xFFFFFF" alpha=".5"/>
<s:GradientEntry color="0xFFFFFF" alpha=".1"/>
</s:LinearGradient>
</s:fill>
</s:Rect>
<s:Graphic>
<s:BitmapImage source="assets/round_plus2.png" left="8" ="6"/>
</s:Graphic>
<s:Label text="新建样式" color="0x131313"
fontFamily="宋体"
left="30" right="20" ="8" bottom="8"
/>
</s:Skin>
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程