使组件可以拖动的startDrag和stopDrag

1.普通组件的拖动:

    添加mouseDown和mouseUp事件,在down事件中写入startDrag(),在up事件中写入stopDrag()

2.spark的Panel组件的拖动:

    添加id为pan,添加pan.titleDisplay.mouseDown和pan.titleDisplay.mouseUp事件如下,然后分别在down和up事件中写入startDrag()和stopDrag()

    pan.titleDisplay.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    pan.titleDisplay.addEventListener(MouseEvent.MOUSE_UP, mouseUpHandler);

你可能感兴趣的:(使组件可以拖动的startDrag和stopDrag)