/** * * @author * */ class TestLocalXY extends eui.Component { public constructor() { super(); this.skinName = "TestLocalXYSkin"; } private list:eui.List; public childrenCreated() { // this.addEventListener(egret.TouchEvent.TOUCH_TAP,this.click2,this); this.list.dataProvider = new eui.ArrayCollection([ { label: "我是第一项"}, { label: "我是第二项"}, { label: "我是第三项"}, { label: "我是第四项"}, { label: "我是第五项"} ]); } }