程序显示一个按钮和一个文本框,点击按钮,文本框显示鼠标点击次数
1 回答
已采纳
望远
TA贡献1017条经验 获得超1032个赞
import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JTextField; public class Test { public static void main(String[] args) { new MyFrame("点击测试"); } } class MyFrame extends JFrame implements ActionListener{ JButton button=new JButton("点击我"); JTextField text=new JTextField("按钮点击了0次"); int count=0; public MyFrame(String title) { setTitle(title); setLayout(new FlowLayout()); button.addActionListener(this); add(button); add(text); setVisible(true); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setBounds(100,100,200,200); pack(); } @Override public void actionPerformed(ActionEvent e) { count++; text.setText("按钮点击了"+count+"次"); } }
添加回答
举报
0/150
提交
取消