0
有沒有辦法通過Accordion headerRenderer發現哪個孩子被選中?哪個手風琴兒童被選中?
我使用flexlib中的CanvasButtonAccordionHeader,我只想在selectedChild的頭部中顯示組件。
感謝您的任何有用的提示。
有沒有辦法通過Accordion headerRenderer發現哪個孩子被選中?哪個手風琴兒童被選中?
我使用flexlib中的CanvasButtonAccordionHeader,我只想在selectedChild的頭部中顯示組件。
感謝您的任何有用的提示。
您可以使用定義內聯headerRenderer
並使用outerDocument
屬性。 這是一個例子:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:ns="http://code.google.com/p/flexlib/">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<mx:Accordion id="acc" width="400" height="400" headerHeight="40">
<mx:headerRenderer>
<fx:Component>
<ns:CanvasButtonAccordionHeader label="{'selected ' +outerDocument.acc.selectedChild.label}">
</ns:CanvasButtonAccordionHeader>
</fx:Component>
</mx:headerRenderer>
<mx:Canvas label="Personal" toolTip="Child number one">
<mx:Label text="Contents of Child 1" />
</mx:Canvas>
<mx:Canvas label="Accounts" toolTip="Child number two">
<mx:Label text="Contents of Child 2" />
</mx:Canvas>
<mx:Canvas label="Help" toolTip="Child number three">
<mx:Label text="Contents of Child 3" />
</mx:Canvas>
</mx:Accordion>
</s:Application>
達維德
這肯定會工作,謝謝。但是如果我不使用內聯標題渲染器呢? – fumeng 2013-02-13 19:14:21