标签: java swing drag jinternalframe jdesktoppane
如何在JInternalFrame中拖动此组件时显示JDesktopPane的内容?
JInternalFrame
JDesktopPane
感谢。
答案 0 :(得分:2)
尝试:
desktop = new JDesktopPane(); desktop.setDragMode(JDesktopPane.LIVE_DRAG_MODE);
As per docs:
public static final int LIVE_DRAG_MODE 表示整个 被拖动项目的内容应该出现在桌面内 窗格中。
public static final int LIVE_DRAG_MODE
表示整个 被拖动项目的内容应该出现在桌面内 窗格中。