Swing WindowEvent類

2019-10-16 22:11:34

此類的物件表示視窗狀態的更改。此低階事件由Window物件在開啟,關閉,啟用,取消啟用,圖示化或取消圖示化時生成,或者當焦點轉移到或轉出時生成視窗。

類宣告

以下是java.awt.event.WindowEvent類的宣告 -

public class WindowEvent
   extends ComponentEvent

欄位

以下是java.awt.event.WindowEvent類的欄位 -

  • static int WINDOW_ACTIVATED - 視窗啟用的事件型別。
  • static int WINDOW_CLOSED - 視窗關閉事件。
  • static int WINDOW_CLOSING - 「視窗正在關閉」事件。
  • static int WINDOW_DEACTIVATED - 視窗已停用的事件型別。
  • static int WINDOW_DEICONIFIED - 視窗取消圖示事件型別。
  • static int WINDOW_FIRST - 用於視窗事件的ID範圍中的第一個數位。
  • static int WINDOW_GAINED_FOCUS - 視窗獲取焦點事件型別。
  • static int WINDOW_ICONIFIED - 視窗圖示化事件。
  • static int WINDOW_LAST - 用於視窗事件的ID範圍中的最後一個數位。
  • static int WINDOW_LOST_FOCUS - 視窗丟失焦點事件型別。
  • static int WINDOW_OPENED - 視窗開啟事件。
  • static int WINDOW_STATE_CHANGED - 視窗狀態更改的事件型別。

類建構函式

編號 建構函式 描述
1 WindowEvent(Window source, int id) 構造一個WindowEvent物件。
2 WindowEvent(Window source, int id, int oldState, int newState) 使用指定的上一個和新視窗狀態構造一個WindowEvent物件。
3 WindowEvent(Window source, int id, Window opposite) 使用指定的相對Window構造一個WindowEvent物件。
4 WindowEvent(Window source, int id, Window opposite, int oldState, int newState) 構造一個WindowEvent物件。

類方法

編號 類方法 描述
1 int getNewState() 對於WINDOW_STATE_CHANGED事件,返回視窗的新狀態。
2 int getOldState() 對於WINDOW_STATE_CHANGED事件,返回視窗的先前狀態。
3 Window getOppositeWindow() 返回此焦點或啟用更改中涉及的另一個Window。
4 Window getWindow() 返回事件的發起者。
5 String paramString() 返回標識此事件的引數字串。

方法繼承

該類繼承以下類中的方法 -

  • java.awt.event.ComponentEvent
  • java.awt.AWTEvent
  • java.util.EventObject
  • java.lang.Object