作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这段代码:
public class Main_class {
public static void main(String[] args) {
JFrame first = new JFrame();
first.setTitle("Hello");
first.setSize(300, 100);
first.setLocation(300, 100);
first.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
first.setVisible(true);
}
}
我收到原始框架,我的问题是我应该如何在没有窗口管理器任务的情况下关闭窗口,在此先感谢
最佳答案
如果你想关闭它,我会实现一个关闭框架的监听器:
public static void main(String[] args) {
final JFrame first = new JFrame();
first.setTitle("Hello");
first.setSize(300, 100);
first.setLocation(300, 100);
first.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
// do other stuff....
first.setVisible(false);
first.dispose();
}
});
first.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
first.setVisible(true);
}
关于java 的 DO_NOTHING_ON_CLOSE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4265159/
我有这段代码: public class Main_class { public static void main(String[] args) { JFrame first
据我了解,在 swing 应用程序中,我已将应用程序的 mainFrame 告知 DO_NOTHING_ON_CLOSE。 public SurveyView(SingleFrameApplicati
我有一个游戏,我试图拦截关闭事件并将用户返回到主菜单。我已经使用 DO_NOTHING_ON_CLOSE 解决了一半问题,但问题是我无法将常规功能返回到菜单屏幕。 您可能知道,问题是,如果 DO_NO
我正在创建一个窗口,我需要通过仅 单击一个按钮来关闭它。 为此,我正在使用 setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE)
我是一名优秀的程序员,十分优秀!