JAVA编程题:创建有一个文本框和三个按钮的小程序。当按下每个按钮时,使不同的文字显示在文本框中

创建有一个文本框和三个按钮的小程序。当按下每个按钮时,使不同的文字显示在文本框中... 创建有一个文本框和三个按钮的小程序。当按下每个按钮时,使不同的文字显示在文本框中 展开
 我来答
手机用户49869
2008-12-19 · 超过12用户采纳过TA的回答
知道答主
回答量:68
采纳率:0%
帮助的人:32.5万
展开全部
import javax.swing.JPanel;
import javax.swing.JFrame;
import javax.swing.JButton;
import javax.swing.JTextField;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

public class Test extends JFrame implements ActionListener{

private static final long serialVersionUID = 1L;
private JPanel jPanel;
private JButton jButton1,jButton2,jButton3;
private JTextField tf1;

public Test(String title) {
super(title);
init();
}

private void init() {
jPanel=new JPanel();
jPanel.setLayout(new FlowLayout());
tf1=new JTextField(20);
jButton1=new JButton("按钮1");
jButton2=new JButton("按钮2");
jButton3=new JButton("按钮3");
jButton1.addActionListener(this);
jButton2.addActionListener(this);
jButton3.addActionListener(this);
jPanel.add(tf1);
jPanel.add(jButton1);
jPanel.add(jButton2);
jPanel.add(jButton3);
this.add(jPanel);
this.setSize(300,100);
this.setResizable(false);
this.setVisible(true);
this.addWindowListener(new WindowAdapter() {
public void windowClosing(final WindowEvent e) {
System.exit(0);
}
});
}

public void actionPerformed(ActionEvent e) {
if(e.getSource().equals(jButton1)){
tf1.setText("按钮1");
}
if(e.getSource().equals(jButton2)){
tf1.setText("按钮2");
}
if(e.getSource().equals(jButton3)){
tf1.setText("按钮3");
}
}

public static void main(String[] args){
new Test("文字变换");
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
bobbyjjw
2008-12-19
知道答主
回答量:30
采纳率:0%
帮助的人:13万
展开全部
swing和awt的编程,网上会有很多教程,书上肯定也有
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式