Use ApplicationControlBar to hold Buttons : ApplicationControlBar « Container « Flex






Use ApplicationControlBar to hold Buttons

Use ApplicationControlBar to hold Buttons
  

<?xml version="1.0" encoding="utf-8"?>
<mx:Application 
    
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:ApplicationControlBar width="100%">
        <mx:Button label="Back" />
        <mx:Button label="Forward" />
        <mx:TextInput width="60" />
        <mx:Button label="Search" />
    </mx:ApplicationControlBar>
</mx:Application>

   
    
  








Related examples in the same category

1.ApplicationControlBar and MenuBarApplicationControlBar and MenuBar
2.A simple docked ApplicationControlBar that includes a MenuBar.A simple docked ApplicationControlBar that includes a MenuBar.