WindowAdapter
介绍 (Introduction)
WindowAdapter类是一个用于接收窗口事件的抽象(适配器)类。 此类的所有方法都是空的。 此类是用于创建侦听器对象的便捷类。
Class 声明 (Class Declaration)
以下是java.awt.event.WindowAdapter类的声明 -
public abstract class WindowAdapter
extends Object
implements WindowListener, WindowStateListener, WindowFocusListener
类构造函数 (Class Constructors)
Sr.No. | 构造函数和描述 |
---|---|
1 | WindowAdapter() |
Class Methods
Sr.No. | 方法和描述 |
---|---|
1 | void windowActivated(WindowEvent e) 激活Window时调用。 |
2 | void windowClosed(WindowEvent e) 窗口关闭时调用。 |
3 | void windowClosing(WindowEvent e) Window正处于关闭状态时调用。 |
4 | void windowDeactivated(WindowEvent e) 取消激活Window时调用。 |
5 | void windowDeiconified(WindowEvent e) 窗口取消图标化时调用。 |
6 | void windowGainedFocus(WindowEvent e) 当Window设置为焦点窗口时调用,这意味着Window或其子组件之一将接收键盘事件。 |
7 | void windowIconified(WindowEvent e) 在图标化窗口时调用。 |
8 | void windowLostFocus(WindowEvent e) 当Window不再是焦点窗口时调用,这意味着键盘事件将不再传递给Window或其任何子组件。 |
9 | void windowOpened(WindowEvent e) 打开Window时调用。 |
10 | void windowStateChanged(WindowEvent e) 更改Window状态时调用。 |
方法继承 (Methods Inherited)
该类继承以下类中的方法 -
- java.lang.Object
WindowAdapter示例
使用您选择的任何编辑器创建以下Java程序,例如D:/ 》 SWING 》 com 》 xnip 》 gui 》
SwingAdapterDemo.java
package cn.xnip.gui;
import java.awt.*;
import java.awt.event.*;
public class SwingAdapterDemo {
private JFrame mainFrame;
private JLabel headerLabel;
private JLabel statusLabel;
private JPanel controlPanel;
public SwingAdapterDemo(){
prepareGUI();
}
public static void main(String[] args){
SwingAdapterDemo swingAdapterDemo = new SwingAdapterDemo();
swingAdapterDemo.showWindowAdapterDemo();
}
private void prepareGUI(){
mainFrame = new JFrame("Java SWING Examples");
mainFrame.setSize(400,400);
mainFrame.setLayout(new GridLayout(3, 1));
headerLabel = new JLabel("",JLabel.CENTER );
statusLabel = new JLabel("",JLabel.CENTER);
statusLabel.setSize(350,100);
mainFrame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent windowEvent){
System.exit(0);
}
});
controlPanel = new JPanel();
controlPanel.setLayout(new FlowLayout());
mainFrame.add(headerLabel);
mainFrame.add(controlPanel);
mainFrame.add(statusLabel);
mainFrame.setVisible(true);
}
private void showWindowAdapterDemo(){
headerLabel.setText("Listener in action: WindowAdapter");
JButton okButton = new JButton("OK");
final JFrame aboutFrame = new JFrame();
aboutFrame.setSize(300,200);;
aboutFrame.setTitle("WindowAdapter Demo");
aboutFrame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent windowEvent){
aboutFrame.dispose();
}
});
JLabel msglabel
= new JLabel("Welcome to xnip SWING Tutorial.",JLabel.CENTER);
aboutFrame.add(msgLabel);
aboutFrame.setVisible(true);
}
}
使用命令提示符编译程序。 转到D:/ 》 SWING并键入以下命令。
D:\SWING>javac com\xnip\gui\SwingAdapterDemo.java
如果没有错误发生,则表示编译成功。 使用以下命令运行该程序。
D:\SWING>java cn.xnip.gui.SwingAdapterDemo
验证以下输出。