java_创建界面及按钮及监听及触发事件

import javax.swing.*;

import java.awt.event.*;

 

public class SimpleGuilB implements ActionListener {

JButton button;

 

public static void main (String[] args) {

SimpleGuilB gui = new SimpleGuilB();

gui.go();

}

public void go() {

JFrame frame = new JFrame();

button = new JButton("click me");

 

        button.addActionListener(this);

 

frame.getContentPane().add(button);

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

frame.setSize(300,300);

frame.setVisible(true);

}

 

public void actionPerformed(ActionEvent event) {

button.setText("11111111111!!!!!!!!liupeng");

}

}

 

简单介绍:在frame 上 添加 button ,并 添加触发事件actionPerformed

 

可以添加 多种widget

你可能感兴趣的:(java)