java生成的awt窗口怎么不能关闭???
importjava.awt.*;publicclassframetest{publicstaticvoidmain(Stringargs[]){Frameframe1=...
import java.awt.*;
public class frametest {
public static void main(String args[]){
Frame frame1=new Frame();
frame1.setSize(300,300);
frame1.setVisible(true);
frame1.setBackground(Color.blue);
}
}代码写在哪?怎么写?? 展开
public class frametest {
public static void main(String args[]){
Frame frame1=new Frame();
frame1.setSize(300,300);
frame1.setVisible(true);
frame1.setBackground(Color.blue);
}
}代码写在哪?怎么写?? 展开
2个回答
2013-07-12
展开全部
添加windows事件(此事件方法有六个或者更多),在closing或者close中写System.exit(0);关闭窗口。可以直接继承windowsAdapter只要写其中的几个方法就行(比如你只要关闭方法就不用其他方法了)。
推荐于2018-03-26
展开全部
import java.awt.*;
import java.awt.event.*;//增加的引入public class frametest {
public static void main(String args[]){
Frame frame1=new Frame();
//增加的代码
frame1.addWindowListener(new WindowAdapter(){
@Override
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
frame1.setSize(300,300);
frame1.setVisible(true);
frame1.setBackground(Color.blue);
}
}
import java.awt.event.*;//增加的引入public class frametest {
public static void main(String args[]){
Frame frame1=new Frame();
//增加的代码
frame1.addWindowListener(new WindowAdapter(){
@Override
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
frame1.setSize(300,300);
frame1.setVisible(true);
frame1.setBackground(Color.blue);
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询