(Flex)让Panel可拖动
Flex(Web) 2009-12-03 21:04:06 阅读145 评论0 字号:大中小
<mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="400" height="300" mouseDown="startDrag()"
mouseUp="stopDrag()">
</mx:Panel>
其中, "stopDrag()"和"startDrag()" 是Flex本身自带的方法。