如何给Swing的Window添加事件

说明

以下示例展示了如何给Swing的Window添加事件。

当用户单击框架的关闭按钮时,我们可以使用以下选项。

  • DO_NOTHING_ON_CLOSE : 无动作。只需侦听 windowClosing 事件即可执行进一步操作。

  • HIDE_ON_CLOSE : 这是 JFrame 和 JDialog 在单击关闭按钮时隐藏的默认行为。

  • DISPOSE_ON_CLOSE : 隐藏和关闭窗口并释放窗口使用的任何资源。

  • EXIT_ON_CLOSE : 使用 System.exit(0) 退出应用程序。

以下示例展示了DO_NOTHING_ON_CLOSE的使用情况。

代码示例

package com.yiidian;

import javax.swing.*;
import java.awt.*;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;

public class SwingTester {
   public static void main(String[] args) {
      createWindow();
   }

   private static void createWindow() {
      JFrame frame = new JFrame("一点教程网:Swing Tester");
      frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
      frame.addWindowListener(new WindowListener() {
         public void windowOpened(WindowEvent e) {}
         public void windowIconified(WindowEvent e) {}
         public void windowDeiconified(WindowEvent e) {}
         public void windowDeactivated(WindowEvent e) {}
         public void windowClosing(WindowEvent e) {
            System.exit(0);
         }
         public void windowClosed(WindowEvent e) {}
         public void windowActivated(WindowEvent e) {}
      });
      createUI(frame);
      frame.setSize(560, 200);
      frame.setLocationRelativeTo(null);
      frame.setVisible(true);
   }
   private static void createUI(JFrame frame){
      JPanel panel = new JPanel();
      LayoutManager layout = new FlowLayout();
      panel.setLayout(layout);
      panel.add(new JLabel("Hello World"));

      frame.getContentPane().add(panel, BorderLayout.CENTER);
   }
}

执行效果如下:

热门文章

优秀文章