`
牧羊人
  • 浏览: 210915 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

TabNavigator

    博客分类:
  • flex
XML 
阅读更多
<?xml version="1.0"?>
<!-- containers\navigators\TNEffect.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

    <mx:WipeLeft id="myWL"/>

    <mx:TabNavigator>

        <mx:VBox label="Accounts" 
            width="300" 
            height="150"
            showEffect="{myWL}">
            <!-- Accounts view goes here. -->
            <mx:Text text="This is a text control.1"/>
        </mx:VBox>

        <mx:VBox label="Stocks" 
            width="300" 
            height="150"
            showEffect="{myWL}" verticalScrollPolicy="auto" horizontalScrollPolicy="auto">
            <!-- Stocks view goes here. -->
            <mx:Text text="This is a text control.2"/>
        </mx:VBox>

        <mx:VBox label="Futures" 
            width="300" 
            height="150"
            showEffect="{myWL}">
            <!-- Futures view goes here. -->
            <mx:Text text="This is a text control.3"/>
        </mx:VBox>   
    
    </mx:TabNavigator>  
</mx:Application>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics