kooyee ‘s blog

开源软件, 众人努力的结晶, 全人类的共同财富
posts - 103, comments - 55, trackbacks - 0, articles - 66
   :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

按键退出applet or frame

Posted on 2008-02-16 23:12 kooyee 阅读(312) 评论(0)  编辑  收藏 所属分类: Swing/Applet
exit = new javax.swing.JButton();
 

 
exit.addActionListener(
new java.awt.event.ActionListener() {
      
public void actionPerformed(java.awt.event.ActionEvent evt) {
             exitActionPerformed(evt);
        }

}
);
 

 
private void exitActionPerformed(java.awt.event.ActionEvent evt) {
        
try {  
                 System.exit(
0);
     }
 catch (Exception e){
            input.setText(
"Error: " + e.toString());
        }

    }


对于frame除了这个方法外 还可以用dispose()
btnClose.addActionListener( 
         
                        
new ActionListener() 
                       
{
                               
// pass query to tthe frame
                             public void actionPerformed( ActionEvent event )
                             
{
                 
                                 dispose();
                 
                             }
 // end actionPerformed
                         }
  // end ActionListener inner class          
                      ); // end call to addActionListener 

只有注册用户登录后才能发表评论。


网站导航: