JavaTM 2 Platform
Standard Ed. 6

javax.swing
介面 WindowConstants

所有已知實作類別:
JDialog, JFrame, JInternalFrame

public interface WindowConstants

用於控制視窗關閉操作的常數。由 JFrameJInternalFrameJDialog 提供的 setDefaultCloseOperationgetDefaultCloseOperation 方法使用這些常數。有關設置預設視窗操作的範例,請參閱 The Java Tutorial 中的 Responding to Window-Closing Events 一節。

另請參見:
JFrame.setDefaultCloseOperation(int), JDialog.setDefaultCloseOperation(int), JInternalFrame.setDefaultCloseOperation(int)

欄位摘要
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
無操作預設視窗關閉操作。

另請參見:
常數欄位值

HIDE_ON_CLOSE

static final int HIDE_ON_CLOSE
隱藏視窗的預設視窗關閉操作

另請參見:
常數欄位值

DISPOSE_ON_CLOSE

static final int DISPOSE_ON_CLOSE
移除視窗的預設視窗關閉操作。

註:當 Java 虛擬機器 (VM) 中最後的可顯示視窗被移除後,虛擬機器可能會終止。有關更多資訊,請參閱 AWT Threading Issues

另請參見:
Window.dispose(), JInternalFrame.dispose(), 常數欄位值

EXIT_ON_CLOSE

static final int EXIT_ON_CLOSE
退出應用程序預設視窗關閉操作。嘗試在支持此操作的 Windows 上執行此項設置(如 JFrame)可能會根據 SecurityManager 拋出一個 SecurityException。建議您只在應用程序中使用此項操作。

從以下版本開始:
1.4
另請參見:
JFrame.setDefaultCloseOperation(int), 常數欄位值

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only