- 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/
我遇到了一个非常有趣的问题。这是我的场景: 我的目标 使用带有嵌套工具提示的 SelectManyCheckbox。 使用 SelectManyCheckbox onHide 事件触发 Ajax (A
在 jQuery 中,我使用 .hide(); 隐藏我的元素。 当我隐藏一些东西时,是否有一个 evert 处理程序被触发?你看,我的代码中有一堆元素,我多次隐藏或显示它们(使用 jQuery)。为了
有人知道 jQuery 中的 onHide() 事件或类似事件吗? 我尝试过: $(this).bind('hide', function(){ console.log('asdasda')
我有一个 WorldEditor JFrame,它启动 Game JFrame。但是,当Game关闭时,我不希望它结束整个程序,因此我将默认关闭操作设置为HIDE_ON_CLOSE。但是,为了节省
我正在使用 https://nakupanda.github.io/bootstrap3-dialog/ 中的 bootstrap3-dialog 库问题是,每次显示对话框(警报、确认或自定义对话框)
我正在尝试制作一个 sidenav,当切换时,它不会完全隐藏 sidenav 并且会显示代表每个选项卡的图标。 我的代码在这里.. header .mdl-layout__drawer { bor
我使用 angular-strap 和模态服务。我尝试在使用参数 onHide 关闭模式时调用一个函数。 var _modal = $modal({ templateUrl:
我正在使用组件作为模板打开模态,一切正常,模态打开并且我正在订阅 onHide 事件,订阅也有效。 但我有一个挑战,我想发送一个具体的原因,例如:“消息添加成功”作为原因。我怎样才能做到这一点?如何发
我在 Angular 2 应用程序中使用 primeng 并面临这个问题 (stackoverflow question) 虽然已接受的答案中提供的 plunkr 有效,但在我的情况下无效。我有一个单
我想在 ViewPart 被隐藏(隐藏 == 它开始不可见)和它被打开(打开 == 它开始可见)时触发方法。像这样的东西: void onHide(){removeAllListeners();} v
我是一名优秀的程序员,十分优秀!