123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="utf-8"?>
- <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
- xmlns:s="library://ns.adobe.com/flex/spark"
- xmlns:mx="library://ns.adobe.com/flex/mx" >
- <fx:Declarations>
- <!-- 将非可视元素(例如服务、值对象)放在此处 -->
- </fx:Declarations>
- <s:states>
- <s:State name="normal"/>
- <s:State name="disabled"/>
- </s:states>
- <s:Rect height="100%" width="100%" alpha="1" >
- <s:fill>
- <s:LinearGradient rotation="90">
- <!--s:GradientEntry color="#12b601" alpha="1" ratio="0"/-->
- <s:GradientEntry color="#3c93b6" alpha="1" ratio="0"/>
- <s:GradientEntry color="#46a3c4" alpha="1" ratio="1"/>
- </s:LinearGradient>
- </s:fill>
-
- </s:Rect>
- <s:Rect height="25" width="100%" alpha="1">
- <s:fill>
- <s:LinearGradient rotation="90">
- <!--s:GradientEntry color="#12b601" alpha="1" ratio="0"/-->
- <s:GradientEntry color="#98c5d5" alpha="1" ratio="0"/>
- <s:GradientEntry color="#3c8fb2" alpha="1" ratio="1"/>
- </s:LinearGradient>
- </s:fill>
- </s:Rect>
- <s:Group id="contentGroup" left="0" right="0" bottom="0" top="0" alpha="1" >
- <s:layout >
- <s:BasicLayout/>
- </s:layout>
- </s:Group>
- </s:SparkSkin>
|