作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 GUI 中有一个按钮应该关闭其窗口。但是,它的事件处理程序位于 AbstractAction
子类中,该子类位于与 JFrame
不同的方法中。因此,我无法找到一种方法来告诉 JFrame
从我的 AbstractAction
中关闭。
这是我的代码的基本布局:
public PointWindow()
{
initialize();
}
public void initialize()
{
JFrame frame = new JFrame();
// JFrame stuff
frame.setContentPane(createGUI());
frame.setVisible(true);
}
public JPanel createGUI()
{
JPanel gui = new JPanel();
// Code....
class MakeGraphACT extends AbstractAction
{
public void actionPerformed(ActionEvent e)
{
frame.setVisible(false); // <--- How to get this to work?
frame.dispose(); // <---
new GraphWindow(pointList);
}
}
//Code...
return gui;
}
我是否在代码规划方面做得很糟糕,或者我只是遗漏了一些明显的东西?
最佳答案
您需要将框架作为 final
参数传递给 createGUI()
方法。
然后您将能够从内部类中访问它。
关于java - 如何用不同的方法从子类关闭 JFrame?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13485065/
我是一名优秀的程序员,十分优秀!