gpt4 book ai didi

apache-flex - 如何在Flex中使面板可拖动

转载 作者:行者123 更新时间:2023-12-02 21:51:21 26 4
gpt4 key购买 nike

我让我的用户能够创建项目。创建项目对话框,例如:

    <s:Panel id="postitNoteCreatePanel" 
horizontalCenter="0" verticalCenter="0"
...

如何使面板可拖动,以便用户可以在页面上移动它,这样它就不会阻止其他项目

最佳答案

您可以尝试:

在面板的titleBar上添加鼠标按下和鼠标按下事件监听,并添加两个函数:

    private function handleDown(event:MouseEvent):void{
this.startDrag();
}

private function handleUp(event:MouseEvent):void{
this.stopDrag();
}

“this”是指面板。

关于apache-flex - 如何在Flex中使面板可拖动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4711093/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com