是否有 Java 库可以进行拖放操作
Java 是否有开源库可以使拖放的实现变得更容易?
我计划制作如下所示的内容:
该程序是Alice,您可以在其中拖动左侧的一些元素并将它们嵌套到右侧。它是开源的,但我认为他们没有使用任何库。我想知道是否有人知道以这种方式工作的开源框架,或者协助进行复杂的拖放操作。
Are there open source libraries for Java to make implementation of drag and drop easier?
I plan to make something like the one shown below:
The program is Alice, where you can drag some elements on the left and nest them to the right. It's open source, but they did not use any libraries I think. I'm wondering if we anyone know of open source frameworks that work this way, or assist in doing complex drag and drops.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 Swing,我建议使用 AWT 内部拖放系统。
正如 Sun 在他们的指南中提到的:
深入了解 swing dnd应该尝试拖放指南。
如果您决定使用与 Swing 不同的工具包,您可以成功找到任何好的第三方拖放库。
If you use Swing I recommend working with the AWT internal drag and drop system.
As Sun mentions on their guides:
For a deeper look at swing dnd you should try the Drag and Drop-Guide.
If you decide to use a different toolkit than Swing you could be successfull finding any good third party drag and drop libraries.
您不需要第三方库。所有内容均在 Java 默认库中提供:
也许这可以帮助您:
拖放复杂的自定义对象
You don't need third party libraries. All is provided in Java default libraries:
May this can help you:
Drag and drop of complex custom objects