-
- 所有已知实现类:
-
JDialog
,JFrame
,JInternalFrame
public interface WindowConstants
用于控制窗口关闭操作的常量。 该setDefaultCloseOperation
种getDefaultCloseOperation
提供方法JFrame
,JInternalFrame
,并JDialog
使用这些常量。 有关设置默认窗口关闭操作的示例,请参阅“Java教程”中的“ Responding to Window-Closing Events ”一节。
-
-
Field Summary
Fields Modifier and Type Field 描述 static int
DISPOSE_ON_CLOSE
配置窗口默认窗口关闭操作。static int
DO_NOTHING_ON_CLOSE
不做任何默认窗口关闭操作。static int
EXIT_ON_CLOSE
退出应用程序默认窗口关闭操作。static int
HIDE_ON_CLOSE
隐藏窗口默认窗口关闭操作
-
-
-
字段详细信息
-
DO_NOTHING_ON_CLOSE
static final int DO_NOTHING_ON_CLOSE
不做任何默认窗口关闭操作。- 另请参见:
- Constant Field Values
-
HIDE_ON_CLOSE
static final int HIDE_ON_CLOSE
隐藏窗口默认窗口关闭操作- 另请参见:
- Constant Field Values
-
DISPOSE_ON_CLOSE
static final int DISPOSE_ON_CLOSE
配置窗口默认窗口关闭操作。注意 :当Java虚拟机(VM)中的最后一个可显示的窗口被丢弃时,VM可能会终止。 有关详细信息,请参阅AWT Threading Issues 。
-
EXIT_ON_CLOSE
static final int EXIT_ON_CLOSE
退出应用程序默认窗口关闭操作。 试图在Windows上设置此功能,如JFrame
,可能会抛出一个SecurityException
基于SecurityManager
。 建议您只在应用程序中使用。- 从以下版本开始:
- 1.4
- 另请参见:
-
JFrame.setDefaultCloseOperation(int)
, Constant Field Values
-
-