1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <s:SparkSkin name="CustomAccordionHeaderSkin"
- xmlns:fx="http://ns.adobe.com/mxml/2009"
- xmlns:s="library://ns.adobe.com/flex/spark"
- minWidth="21" minHeight="21"
- alpha.disabled="0.5">
- <!-- states -->
- <s:states>
- <s:State name="up" />
- <s:State name="over" />
- <s:State name="down" />
- <s:State name="disabled" />
- <s:State name="selectedUp" />
- <s:State name="selectedOver" />
- <s:State name="selectedDown" />
- <s:State name="selectedDisabled" />
- </s:states>
- <!-- layer 1: fill -->
- <s:Rect left="1" right="1" top="0" bottom="0">
- <s:fill>
- <s:BitmapFill source="@Embed('resource/yjpt/list/sfq_bg.png')" />
- </s:fill>
- </s:Rect>
- <s:Rect left="0" right="0" top="0" bottom="0" width="69" height="20">
- <s:stroke>
- <s:SolidColorStroke color="0x16466d" alpha="1" alpha.over="1" alpha.down="1" />
- </s:stroke>
- </s:Rect>
- </s:SparkSkin>
|