blob: f5b46de4856d9be132a66b330990a3a8add48151 [file]
<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="300" height="400">
<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:controlBarLayout><s:VerticalLayout/></s:controlBarLayout>
<s:controlBarContent>
<s:Label text="controlBar content"/>
</s:controlBarContent>
</s:TitleWindow>