คลาสที่ประมวลผล WindowEvent จำเป็นต้องใช้อินเทอร์เฟซนี้และวัตถุของคลาสนี้สามารถลงทะเบียนกับส่วนประกอบได้โดยใช้ addWindowListener() วิธีการ
วิธีการของอินเทอร์เฟซ WindowListener
WindowListener อินเทอร์เฟซกำหนด 7 วิธีในการจัดการเหตุการณ์ของหน้าต่าง
- เป็นโมฆะ windowActivated(WindowEvent we) − เรียกใช้เมื่อเปิดใช้งานหน้าต่าง
- เป็นโมฆะ windowDeactivated(WindowEvent เรา ) - เรียกใช้เมื่อปิดหน้าต่าง
- เป็นโมฆะ windowOpened(WindowEvent we) − เรียกใช้เมื่อเปิดหน้าต่าง
- เป็นโมฆะ windowClosed(WindowEvent we) − เรียกใช้เมื่อปิดหน้าต่าง
- เป็นโมฆะ windowClosing(WindowEvent we) − เรียกใช้เมื่อปิดหน้าต่าง
- เป็นโมฆะ windowIconified(WindowEvent เรา) − เรียกเมื่อย่อหน้าต่าง
- เป็นโมฆะ windowDeiconfied(WindowEvent เรา) − เรียกใช้เมื่อมีการคืนค่าหน้าต่าง
ไวยากรณ์
public interface WindowListener extends EventListener
ตัวอย่าง
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class WindowListenerTest extends JFrame implements WindowListener { JLabel l1,l2; JTextField t1; JPasswordField p1; JButton b1; public WindowListenerTest() { super("WindowListener Test"); setLayout(new GridLayout(3,2)); l1 = new JLabel("Name"); l2 = new JLabel("Password"); t1 = new JTextField(10); p1 = new JPasswordField(10); b1 = new JButton("Send"); add(l1); add(t1); add(l2); add(p1); add(b1); addWindowListener(this); } public static void main(String args[]) { WindowListenerTest wlt = new WindowListenerTest(); wlt.setSize(375, 250); wlt.setResizable(false); wlt.setLocationRelativeTo(null); wlt.setVisible(true); } public void windowClosing(WindowEvent we) { this.setVisible(false); System.exit(0); } public void windowActivated(WindowEvent we) { } public void windowDeactivated(WindowEvent we) { } public void windowOpened(WindowEvent we) { } public void windowClosed(WindowEvent we) { } public void windowIconified(WindowEvent we) { } public void windowDeiconified(WindowEvent we) { } }
ผลลัพธ์