<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#874040, #874040]">
<mx:Style>
ApplicationControlBar{
backgroundColor:#ACACAC;
color: #323232;
}
</mx:Style>
<mx:ApplicationControlBar dock="true" paddingTop="0" paddingBottom="0" >
<mx:Label text="Docked" fontWeight="bold" color="0x000000"/>
<mx:MenuBar id="myMenuBar" labelField="@label">
<mx:XMLList>
<menuitem label="MenuItem A" >
<menuitem label="SubMenuItem A-1" type="check"/>
<menuitem label="SubMenuItem A-2" type="check"/>
</menuitem>
<menuitem label="MenuItem B"/>
<menuitem label="MenuItem C"/>
<menuitem label="MenuItem D" >
<menuitem label="SubMenuItem D-1" type="radio" groupName="one"/>
<menuitem label="SubMenuItem D-2" type="radio" groupName="one"/>
<menuitem label="SubMenuItem D-3" type="radio" groupName="one"/>
</menuitem>
</mx:XMLList>
</mx:MenuBar>
</mx:ApplicationControlBar>
<mx:Label color="0xACACAC" text="A docked ApplicationControlBar appears at the top of the application window." x="146" y="10"/>
<mx:Spacer height="100%" />
<mx:ApplicationControlBar width="80%" bottom="49" horizontalCenter="12">
<mx:Label text="Normal" fontWeight="bold" color="0x000000"/>
<mx:Label text="Search:" color="0x323232" />
<mx:TextInput width="100%" maxWidth="200" />
<mx:Spacer width="100%" />
<mx:Button label="Go adobe.com" color="0x000000" />
</mx:ApplicationControlBar>
<mx:Label color="0xACACAC" text="A normal ApplicationControlBar can appear anywhere in the application." horizontalCenter="-64" bottom="10"/>
</mx:Application>
No comments:
Post a Comment