我希望点击JInternalFrame
中的按钮关闭父框架。
答案 0 :(得分:1)
父框架作为按钮所在的JInternalFrame
或包含在其中的JFrame
或窗口?
使用:
SwingUtilities.getWindowAncestor(button).dispose()
或
SwingUtilities.getAncestorOfClass(JInternalFrame.class, button).dispose();
或类似。
的Javadoc: https://docs.oracle.com/javase/8/docs/api/javax/swing/SwingUtilities.html