Flex權威指南3學習筆記之一——介面知識(四)

來源:互聯網
上載者:User

運用視圖實現介面的切換

 

1.在DashBoard.mxml中,添加一個ApplicationBar,並在其中添加四個LinkButton用於切換

<mx:ApplicationControlBar dock="true"><br /><mx:LinkButton label="All"><br /><mx:LinkButton label="Sales"><br /><mx:LinkButton label="Categories"><br /><mx:LinkButton label="Comparison"><br /></mx:ApplicationControlBar>

 

2.在ApplicationControlBar後邊添加一個Panel,屬性設定如下

<mx:Panel id="sales"width="100%" height="100%"title="Sales Chart">

</mx:Panel>

然後在Panel內如嵌套一個ControlBar

3.在Panel後邊添加一個VBox,屬性值設定如下:

<mx:VBox id="rightCharts" width="100%" height="100%" >

</mx:VBox>

然後在裡邊添加兩個Panel,這樣兩個Panel將會垂直排列,一個用於顯示分類,一個用於對比。如下所示:

<mx:Panel id="type" width="100%" height="100%"<br />title="Category Chart"><br /><mx:ControlBar><br /></mx:ControlBar><br /></mx:Panel><br /><mx:Panel id="comp"<br />width="100%" height="100%"<br />title="Comparison Chart"><br /><mx:ControlBar><br /></mx:ControlBar><br /></mx:Panel>

4.添加要切換的各個檢視狀態:

<mx:states><br /><mx:State name="fullSales"><br /><mx:SetProperty target="{rightCharts}"<br />name="width" value="0"/><br /><mx:SetProperty target="{rightCharts}"<br />name="height" value="0"/><br /></mx:State></p><p><mx:State name="fullType"><br /><mx:SetProperty target="{sales}"<br />name="width"<br />value="0"/><br /><mx:SetProperty target="{sales}"<br />name="height"<br />value="0"/><br /><mx:SetProperty target="{comp}"<br />name="width"<br />value="0"/><br /><mx:SetProperty target="{comp}"<br />name="height"<br />value="0"/><br /></mx:State><br /><mx:State name="fullComp"><br /><mx:SetProperty target="{sales}"<br />name="width"<br />value="0"/><br /><mx:SetProperty target="{sales}"<br />name="height"<br />value="0"/><br /><mx:SetProperty target="{type}"<br />name="width"<br />value="0"/><br /><mx:SetProperty target="{type}"<br />name="height"<br />value="0"/><br /></mx:State><br /></mx:states>

5.給四個linkButton添加click屬性,用於切換

<mx:ApplicationControlBar dock="true"><br /><mx:LinkButton label="All"<br />click="this.currentState=''"/><br /><mx:LinkButton label="Sales"<br />click="this.currentState='fullSales'"/><br /><mx:LinkButton label="Categories"<br />click="this.currentState='fullType'"/><br /><mx:LinkButton label="Comparison"<br />click="this.currentState='fullComp'"/><br /></mx:ApplicationControlBar>


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.