如何使拖放始终在 Flex 4 Spark 列表中复制(从不删除)?

发布于 2024-10-05 06:43:32 字数 102 浏览 2 评论 0原文

使用 Flex 中内置的拖放功能,我可以将一个项目从一个列表拖放到另一个列表中。但这会从第一个列表中删除该项目。就我而言,我需要将项目保留在原始列表中。所以我需要始终为我的用户创建复制行为。

Using the built in drag and drop features in Flex I can drag an item from one list and drop it into another list. But this removes the item from the first list. In my case I need to keep the items in the original list. So I need to always create a copy behavior for my users.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苍景流年 2024-10-12 06:43:32

有一个名为“dragMoveEnabled”的属性被设置为“true”。

来自文档:

此属性的描述是“一个标志,指示项目是否可以移动,而不仅仅是从控件中复制作为拖放操作的一部分。如果为 true,并且 DragEnabled 属性为 true,则项目通常,数据提供者不能或不应该从中删除项目,因此在拖放过程中不应允许进行 MOVE 操作。”

当设置为 false 或删除时,我会得到我想要的行为,即始终复制,而不必同时按 CTRL 键才能工作。

There is a property called, "dragMoveEnabled" that was set to "true".

From the documentation:

The description of this property is, "A flag that indicates whether items can be moved instead of just copied from the control as part of a drag-and-drop operation. If true, and the dragEnabled property is true, items can be moved. Often the data provider cannot or should not have items removed from it, so a MOVE operation should not be allowed during drag-and-drop."

When set to false or removed I'm getting the behavior that I want which is Copy always without having to also press the CTRL key for it to work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文