码迷,mamicode.com
首页 > 其他好文 > 详细

动作事件监听器

时间:2019-03-24 13:32:13      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:get   new   bsp   button   ide   ring   imp   jbutton   nts   

public class SimpleEvent extends JFrame{
    private JButton jb = new JButton("我是按钮,单击我");
    public SimpleEvent() {
        // TODO Auto-generated constructor stub
        setLayout(null);
        Container cp = getContentPane();
        cp.add(jb);
        jb.setBounds(10,10,100,30);
        jb.addActionListener(new jbAction());
        setVisible(true);
        setSize(300,300);
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }
    class  jbAction implements ActionListener{
        @Override
        public void actionPerformed(ActionEvent e) {
            // TODO Auto-generated method stub
        jb.setText("我被单击了");    
        }
    }
     public static void main(String[] args) {
        // TODO Auto-generated method stub
         new SimpleEvent();
    }

}

 

动作事件监听器

标签:get   new   bsp   button   ide   ring   imp   jbutton   nts   

原文地址:https://www.cnblogs.com/dulute/p/10587808.html

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