A skin class : SparkSkin « Style « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Style » SparkSkinScreenshots 
A skin class
 
<?xml version="1.0" encoding="utf-8"?>
<mx:Application 
    xmlns:s="library://ns.adobe.com/flex/spark" 
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <s:SparkSkin>
        <s:Rect height="100%" width="100%">
            <s:fill>
                <mx:LinearGradient>
                    <mx:entries>
                        <mx:GradientEntry color="#92A1B9" />
                    </mx:entries>
                </mx:LinearGradient>
            </s:fill>
        </s:Rect>
        <s:Group id="contentGroup" left="5" top="5" right="5" bottom="5">
            <s:layout>
                <s:BasicLayout />
            </s:layout>
        </s:Group>
    </s:SparkSkin>
</mx:Application>

   
  
Related examples in the same category
www__._j_a__v_a___2s.___com__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.