码迷,mamicode.com
首页 > 其他好文 > 详细

e566. 关闭的时候关闭程序

时间:2018-09-06 11:02:46      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:closed   关闭   his   body   pac   this   show   sys   tab   

By default, when the close button on a frame is clicked, nothing happens. This example shows how to exit the application when the frame is closed:

    // Create a frame
    Frame frame = new Frame();
    
    // Add a listener for the close event
    frame.addWindowListener(new WindowAdapter() {
        public void windowClosing(WindowEvent evt) {
            // Exit the application
            System.exit(0);
        }
    });
    

 

Related Examples

e566. 关闭的时候关闭程序

标签:closed   关闭   his   body   pac   this   show   sys   tab   

原文地址:https://www.cnblogs.com/borter/p/9596107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!