White application background : Application Style « Container « 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 » Container » Application StyleScreenshots 
White application background
White application background
            

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" backgroundColor="#FFFFFF">
   <mx:Script>
     
       [Bindable]
       public var myLabelName:String = "Hello World";
   
   </mx:Script>
  <mx:Panel title="Binding With Curly Braces" width="350" height="150">
    <mx:Spacer height="100%"/>
    <mx:Label text="{this.myLabelName}" />
    <mx:Spacer height="100%"/>
  </mx:Panel>
  <mx:TextArea id="ta1" text="" change="this.myLabelName=ta1.text" />
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
    
  
Related examples in the same category
1.Set border style to solid for ApplicationSet border style to solid for Application
2.Application style aligns application to leftApplication style aligns application to left
3.Application style removes marginsApplication style removes margins
4.Application style sets background image to be emptyApplication style sets background image to be empty
5.Set Application style name to plain
6.Use to embed a font in the Flex applicationUse <mx:Style> to embed a font in the Flex application
7.Override the Default Application Style
8.style for application
9.Add padding to ApplicationAdd padding to Application
10.Set width and height for ApplicationSet width and height for Application
11.Set application backgroundSet application background
w___w___w_.__j___av_a__2_s_.__c__o___m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.