blob: 7689e34de4560a58ff782496be8b8ca5b44d72a8 [file] [log] [blame]
<?xml version="1.0" encoding="iso-8859-1"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<mx:VBox width="100%" height="100%" xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
import mx.containers.*
import mx.controls.*
]]>
</mx:Script>
<mx:ViewStack id="viewS" width="90%" height="90%" creationPolicy="all" change="{ti.text='Change Event Triggered'}">
<mx:VBox label="Panel 1" id="search" color="red">
<mx:Label text="ViewStack container panel 1"/>
</mx:VBox>
<mx:VBox label="Panel 2" id="custInfo" color="blue">
<mx:Label text="ViewStack container panel 2"/>
</mx:VBox>
<mx:VBox label="Panel 3" id="accountInfo" color="cyan">
<mx:Label text="ViewStack container panel 3"/>
</mx:VBox>
</mx:ViewStack>
<mx:Button id="searchButton" label="Search Panel" click="viewS.selectedChild=search;"/>
<mx:Button id="cInfoButton" label="Customer Info Panel" click="viewS.selectedChild=custInfo;"/>
<mx:Button id="aInfoButton" label="Account Panel" click="viewS.selectedChild=accountInfo;"/>
<mx:TextInput id="ti" />
</mx:VBox>