码迷,mamicode.com
首页 > 编程语言 > 详细

java学习笔记_GUI(2)

时间:2016-08-28 09:53:36      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:

 1 import javax.swing.*;
 2 import java.awt.event.*;
 3 
 4 class Gui implements ActionListener{
 5     
 6     JButton button = new JButton("click me");
 7 
 8     public void show() {
 9         JFrame frame = new JFrame();
10         
11         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
12         
13         frame.getContentPane().add(button);
14         frame.setSize(300, 200);
15         frame.setVisible(true);
16         
17         button.addActionListener(this);
18     }
19     
20     public void actionPerformed( ActionEvent event ) {
21         button.setText("I‘ve been clicked!");
22     }
23 }
24 
25 class GuiTest {
26     public static void main( String[] args ) {
27         Gui gui = new Gui();
28         gui.show();
29     }
30 }

这个例子演示了如何给BUTTON设置click之后的响应函数

java学习笔记_GUI(2)

标签:

原文地址:http://www.cnblogs.com/ren-yu/p/5814376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!