AccordionSkin.mxml 934 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <s:SparkSkin name="CustomAccordionHeaderSkin"
  3. xmlns:fx="http://ns.adobe.com/mxml/2009"
  4. xmlns:s="library://ns.adobe.com/flex/spark"
  5. minWidth="21" minHeight="21"
  6. alpha.disabled="0.5">
  7. <!-- states -->
  8. <s:states>
  9. <s:State name="up" />
  10. <s:State name="over" />
  11. <s:State name="down" />
  12. <s:State name="disabled" />
  13. <s:State name="selectedUp" />
  14. <s:State name="selectedOver" />
  15. <s:State name="selectedDown" />
  16. <s:State name="selectedDisabled" />
  17. </s:states>
  18. <!-- layer 1: fill -->
  19. <s:Rect left="1" right="1" top="0" bottom="0">
  20. <s:fill>
  21. <s:BitmapFill source="@Embed('resource/yjpt/list/sfq_bg.png')" />
  22. </s:fill>
  23. </s:Rect>
  24. <s:Rect left="0" right="0" top="0" bottom="0" width="69" height="20">
  25. <s:stroke>
  26. <s:SolidColorStroke color="0x16466d" alpha="1" alpha.over="1" alpha.down="1" />
  27. </s:stroke>
  28. </s:Rect>
  29. </s:SparkSkin>