如何通过拖动从 JTable 中删除列?
在 Outlook 中,如果将列标题拖出表格,我可以删除表格列。 如何使用 Swing JTable 在 Java 中执行相同的操作?
默认的拖放 无法执行放置操作,因为此功能与目标位置无关。 它仅取决于阻力源。
In Outlook I can remove a table column if I drag the column header out of the table. How can I do the same in Java with a Swing JTable?
A default drag & drop operation is not possible because this feature is independent of the target position. It depends only from the drag source.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于这个答案,我使用了 SimpleTableDemo。 我只是将一个 MouseListener 添加到表中。 这里是 MouseListener:
这是一种非常基本的方法,没有异常处理或无论如何。 但至少它有效。
For this answer I used the SimpleTableDemo. I simply add a MouseListener to the table. Here the MouseListener:
This is a really basic way, there are no exception handled or wathever. But at least it works.