Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以将图像嵌入到弹性网格列中?类似于:
<mx:DataGridColumn width="23" src="images/testimage.jpg"/>
您需要使用这样的项目渲染器:
<mx:DataGridColumn> <mx:itemRenderer> <mx:Component> <mx:Image source="images/testimage.jpg"/> </mx:Component> </mx:itemRenderer>