| <s:TitleWindow |
| xmlns:fx="http://ns.adobe.com/mxml/2009" |
| xmlns:mx="library://ns.adobe.com/flex/mx" |
| xmlns:s="library://ns.adobe.com/flex/spark" title="{titleStr}" |
| width="400" height="300"> |
| |
| <fx:Script> |
| <![CDATA[ |
| |
| [Bindable] |
| public var titleStr:String="test title window with controlBar"; |
| |
| ]]> |
| </fx:Script> |
| <s:Group> |
| <s:layout> |
| <s:BasicLayout/> |
| </s:layout> |
| <s:Button id="childBtn" label="child" left="0" top="0"/> |
| <s:Rect id="childBorder"> |
| <s:stroke> |
| <s:SolidColorStroke color="0x00FF00"/> |
| </s:stroke> |
| </s:Rect> |
| </s:Group> |
| <s:controlBarContent> |
| <s:Button id="button1" label="A" width="35" /> |
| <s:Button id="button2" label="B" width="35" /> |
| <s:Button id="button3" label="C" width="35" /> |
| </s:controlBarContent> |
| </s:TitleWindow> |