编写一个窗口程序,窗口中有两个按钮“退出”和“点击”还有一个文本框,当单机退出时结束程序,单机点击
答案:3 悬赏:0 手机版
解决时间 2021-11-11 03:19
- 提问者网友:贪了杯
- 2021-11-10 09:58
编写一个窗口程序,窗口中有两个按钮“退出”和“点击”还有一个文本框,当单机退出时结束程序,单机点击
最佳答案
- 五星知识达人网友:天凉才是好个秋
- 2021-11-10 10:33
您好,你是要这样的效果吗?
追问对对对追答我qq 1263526752追问多少?追答1263526752 代码有点多,这里发不了追问验证问题,你是谁?哥,赶时间……还有半小时追答随便写
追问对对对追答我qq 1263526752追问多少?追答1263526752 代码有点多,这里发不了追问验证问题,你是谁?哥,赶时间……还有半小时追答随便写
全部回答
- 1楼网友:鸠书
- 2021-11-10 11:27
import java.awt.Button;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.TextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class ExpFrame extends Frame {
int count = 0;
public ExpFrame() {
super("单击按钮实验");
this.setLayout(new FlowLayout());
Button b1 = new Button("退出");
Button b2 = new Button("点击");
TextField tf = new TextField("您单击了0次", 20);
this.add(b1);
this.add(b2);
this.add(tf);
this.pack();
this.setLocation(300, 300);
this.setVisible(true);
b1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
ExpFrame.this.setVisible(false);
System.exit(0);
}
});
b2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
count ++;
tf.setText("您单击了" + count + "次");
}
});
}
public static void main(String[] args) {
new ExpFrame();
}
}
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.TextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class ExpFrame extends Frame {
int count = 0;
public ExpFrame() {
super("单击按钮实验");
this.setLayout(new FlowLayout());
Button b1 = new Button("退出");
Button b2 = new Button("点击");
TextField tf = new TextField("您单击了0次", 20);
this.add(b1);
this.add(b2);
this.add(tf);
this.pack();
this.setLocation(300, 300);
this.setVisible(true);
b1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
ExpFrame.this.setVisible(false);
System.exit(0);
}
});
b2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
count ++;
tf.setText("您单击了" + count + "次");
}
});
}
public static void main(String[] args) {
new ExpFrame();
}
}
- 2楼网友:零点过十分
- 2021-11-10 10:54
8
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯