TitleWindow Title, close button, position, border color and border alpha : TitleWindow « 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 » TitleWindowScreenshots 
TitleWindow Title, close button, position, border color and border alpha
TitleWindow Title, close button, position, border color and border alpha
     
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" >
    
    <mx:TitleWindow title="Options" showCloseButton="true" x="80" y="59" borderColor="#999999" borderAlpha="0.85">
        <mx:Form x="47" y="64">
            <mx:FormItem label="Background Color:">
                <mx:ColorPicker/>
            </mx:FormItem>
            <mx:FormItem label="Text Color:">
                <mx:ColorPicker/>
            </mx:FormItem>
            <mx:FormItem label="Horizontal Layout:">
                <mx:CheckBox/>
            </mx:FormItem>
            <mx:FormItem label="Open Windows:">
                <mx:RadioButton label="A" groupName="sample1"/>
                <mx:RadioButton label="B" selected="true" groupName="sample1"/>
                <mx:RadioButton label="C" groupName="sample1"/>
            </mx:FormItem>
        </mx:Form>
    </mx:TitleWindow>
    
</mx:Application>

   
    
    
    
    
  
Related examples in the same category
1.Add close event listener for TitleWindowAdd close event listener for TitleWindow
2.Add Mouse Down listener to TitleWindowAdd Mouse Down listener to TitleWindow
3.Adding mouse event to Panel and TitleWindowAdding mouse event to Panel and TitleWindow
4.Creates a TitleWindow container inside a Panel container.Creates a TitleWindow container inside a Panel container.
5.Resize TitleWindow with TransitionResize TitleWindow with Transition
6.Change TitleWindow position and size in stateChange TitleWindow position and size in state
7.Add control to TitleWindowAdd control to TitleWindow
8.Make TitleWindow to show Close buttonMake TitleWindow to show Close button
9.Add close handler to TitleWindowAdd close handler to TitleWindow
10.Top level TitleWindow tag
11.Add button to window through ActionScriptAdd button to window through ActionScript
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.