JAVA语言习题!急求!“编写一个程序,在屏幕上显示带标题的窗口,并‘。。。
“编写一个程序,在屏幕上显示带标题的窗口,并添加一个按钮,当用户单击按钮式,结束程序。”谢谢各位!...
“编写一个程序,在屏幕上显示带标题的窗口,并添加一个按钮,当用户单击按钮式,结束程序。” 谢谢各位!
展开
1个回答
展开全部
import javax.swing.JFrame;
import java.awt.Button;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class testButton extends JFrame {
public static void main(String[] args) {
new testButton("testButton");
}
public testButton(String s) {
super(s);
Button closeButton = new Button();
closeButton.setBounds(50, 20, 60, 20);
closeButton.setLabel("press me!");
closeButton.addActionListener(new closeAction() {
});
this.setLayout(null);
this.add(closeButton);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setBounds(400, 300, 200, 100);
this.setVisible(true);
}
class closeAction implements ActionListener { // closeButton按钮的关闭监听
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
}
}
import java.awt.Button;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class testButton extends JFrame {
public static void main(String[] args) {
new testButton("testButton");
}
public testButton(String s) {
super(s);
Button closeButton = new Button();
closeButton.setBounds(50, 20, 60, 20);
closeButton.setLabel("press me!");
closeButton.addActionListener(new closeAction() {
});
this.setLayout(null);
this.add(closeButton);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setBounds(400, 300, 200, 100);
this.setVisible(true);
}
class closeAction implements ActionListener { // closeButton按钮的关闭监听
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询