- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 WorldEditor
JFrame,它启动 Game
JFrame。但是,当Game
关闭时,我不希望它结束整个程序,因此我将默认关闭操作设置为HIDE_ON_CLOSE
。但是,为了节省资源,我在 Game
运行时暂停 WorldEditor
。
如何检测 Game
窗口何时隐藏,以便恢复 WorldEditor
?
最佳答案
为什么不自己隐藏框架而不是使用默认的 HIDE_ON_CLOSE
?
// inside WindowListener class
public windowClosing(WindowEvent e) {
yourFrame.setVisible( false );
// your code here...
}
编辑内容:来自文档:
The default close operation is executed after any window listeners handle the window-closing event. So, for example, assume that you specify that the default close operation is to dispose of a frame. You also implement a window listener that tests whether the frame is the last one visible and, if so, saves some data and exits the application. Under these conditions, when the user closes a frame, the window listener will be called first. If it does not exit the application, then the default close operation — disposing of the frame — will then be performed.
带有工作示例的新编辑:
import java.awt.event.*;
import javax.swing.JFrame;
public class ListenerTest extends JFrame implements WindowListener {
public static void main(String[] args) {
ListenerTest frame = new ListenerTest();
frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
frame.setVisible( true );
}
public ListenerTest() {
this.addWindowListener( this );
}
public void windowActivated(WindowEvent e) {
System.out.println(" activated ");
}
public void windowClosed(WindowEvent e){
System.out.println(" closed ");
}
public void windowClosing(WindowEvent e){
System.out.println(" closing ");
}
public void windowDeactivated(WindowEvent e){
System.out.println(" deactivated ");
}
public void windowDeiconified(WindowEvent e){
System.out.println(" deiconified ");
}
public void windowIconified(WindowEvent e){
System.out.println(" iconified ");
}
public void windowOpened(WindowEvent e){
System.out.println(" opened ");
}
}
对此进行测试,以捕获正在触发的内容事件。
关于java - JFrame.HIDE_ON_CLOSE onHide 事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17119960/
关闭应用程序后如何显示我创建的java应用程序?我的意思是我想关闭我制作的应用程序,之后它仍然在后台进程(托盘)上运行,我做到了,但是在我双击托盘图标后如何使应用程序再次显示(弹出)?有人可以帮助我吗
我有一个 WorldEditor JFrame,它启动 Game JFrame。但是,当Game关闭时,我不希望它结束整个程序,因此我将默认关闭操作设置为HIDE_ON_CLOSE。但是,为了节省
我的 Java 应用程序有问题,我在托盘栏中设置了减少图标的必要条件并设置: app.getMainFrame().setDefaultCloseOperation(HIDE_ON_CLOSE); 因
我知道文档中说JFrame.setDefaultCloseOperation(int)是HIDE_ON_CLOSE。但是,当我在当前帧窗口上按 X 时,它不仅会隐藏当前帧,还会终止正在运行的程序。谁能
在 javadoc 上,HIDE_ON_CLOSE 默认选项说明了这一点 Automatically hide the frame after invoking any registered Wind
我是一名优秀的程序员,十分优秀!