浏览 2414 次
锁定老帖子 主题:初试Flex,一个小小的RSS阅读器!
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-06-15
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="800" height="600" fontSize="12" creationComplete="rssRequest.send()"> <mx:HTTPService id="rssRequest" url="http://rss.sina.com.cn/news/allnews/tech.xml" useProxy="false" /> <mx:Script> <![CDATA[ import flash.net.navigateToURL; ]]> </mx:Script> <mx:Panel width="100%" height="100%" layout="absolute" horizontalCenter="0" top="10" title="{rssRequest.lastResult.rss.channel.title}"> <mx:DataGrid horizontalCenter="0" width="760" y="10" height="434" id="rssgrid" dataProvider="{rssRequest.lastResult.rss.channel.item}"> <mx:columns> <mx:DataGridColumn headerText="标题" dataField="title"/> <mx:DataGridColumn headerText="内容" dataField="description"/> <mx:DataGridColumn headerText="发布时间" dataField="pubDate"/> <mx:DataGridColumn headerText="查看详细信息"> <mx:itemRenderer> <mx:Component> <mx:Button label="查看详细信息" click="navigateToURL(new URLRequest(data.link));" /> </mx:Component> </mx:itemRenderer> </mx:DataGridColumn> </mx:columns> </mx:DataGrid> </mx:Panel> </mx:Application> 很简单,希望大家不要见笑。 为了查看相信费了不少的力气,开始打算用selectindex到,感觉不太舒服,发现了data这个好东西,data是一个内置对象,代表当前使用的数据,这样就方便多了。 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |