本文整理汇总了Java中javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE属性的典型用法代码示例。如果您正苦于以下问题:Java WindowConstants.DO_NOTHING_ON_CLOSE属性的具体用法?Java WindowConstants.DO_NOTHING_ON_CLOSE怎么用?Java WindowConstants.DO_NOTHING_ON_CLOSE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类javax.swing.WindowConstants
的用法示例。
在下文中一共展示了WindowConstants.DO_NOTHING_ON_CLOSE属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setDefaultCloseOperation
/**
* Sets default operation to be performed when what-if window is closed.
* @see WindowConstants#DISPOSE_ON_CLOSE
* @see WindowConstants#DO_NOTHING_ON_CLOSE
* @see JFrame#EXIT_ON_CLOSE
* @see JMTFrame#AUTO_MANAGE_ON_CLOSE
*/
@Override
public void setDefaultCloseOperation(int operation) {
if (operation == JMTFrame.AUTO_MANAGE_ON_CLOSE) {
super.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
this.addWindowListener(adapter);
} else {
this.removeWindowListener(adapter);
super.setDefaultCloseOperation(operation);
}
}
示例2: setDefaultCloseOperation
/**
* Sets default operation to be performed when whif window is closed.
* @see WindowConstants#DISPOSE_ON_CLOSE
* @see WindowConstants#DO_NOTHING_ON_CLOSE
* @see JFrame#EXIT_ON_CLOSE
* @see JMTFrame#AUTO_MANAGE_ON_CLOSE
*/
@Override
public void setDefaultCloseOperation(int operation) {
if (operation == JMTFrame.AUTO_MANAGE_ON_CLOSE) {
super.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
this.addWindowListener(adapter);
} else {
this.removeWindowListener(adapter);
super.setDefaultCloseOperation(operation);
}
}