flex 4 의 새로운 데이터 형식 에 대한 영어 대조

2923 단어 xmlFlexAdobe
Flex 4 new data type:ArrayList
by Flying 2010.4.15 22:53
There is a new data type: ArrayLis, I wonder if you have known it or not. ArrayList implements IList interface and use Array as its source of the data. Essentially it is a lightweight ArrayCollection, and can be used as source of the data to bind to the control. ArrayCollection can apply sort and filter, but ArrayList can't.
See the following examples:
<?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">
	<fx:Declarations>
		<s:ArrayList id="al">
			<fx:Object type="Line" class="LineSeries"/>
			<fx:Object type="Mountain" class="AreaSeries"/>
			<fx:Object type="Candlestick" class="CandlestickSeries"/>
			<fx:Object type="HLOC" class="HLOCSeries"/>
		</s:ArrayList>
	</fx:Declarations>
	<s:DropDownList dataProvider="{al}" 
		labelField="type" selectedIndex="0"/>
</s:Application>

Note that the list based Spark controls can't directly use Array as it's dataProvider, the dataProvider must implement IList interface, which should be one of the reasons to introduce ArrayList
 
Flex 4 에 새로운 데이터 형식 을 도 입 했 습 니 다: Array List.그것 은 IList 인 터 페 이 스 를 실현 하고 밑바닥 은 Array 를 데이터 소스 로 한다.본질 적 으로 이것 은 경량급 의 Array Collection 으로 데이터 원본 으로 컨트롤 에 연결 할 수 있다.그러나 Array Collection 과 달리 배열 을 선별 하고 걸 러 낼 수 없습니다.
다음 실례 를 보십시오.
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">                    < / s: application > list 기반 Spark 컨트롤 은 Array 를 데이터 공급 자로 직접 사용 할 수 없 으 며, 반드시 IList 인 터 페 이 스 를 실현 해 야 합 니 다.이것 도 Array List 데이터 형식 을 도입 한 원인 중 하나 일 것 이다.

좋은 웹페이지 즐겨찾기