所以我在BlueJ上有这个按钮,但它没有做任何事情,我也不知道如何让它工作。我如何调整这段代码,以便我的按钮会说些什么,例如" Hello World!"?
这是我的代码:
import javax.swing.*;
public class testKnop {
public static void main() {
JFrame frame = new JFrame();
JButton b1 = new JButton();
frame.setSize(500,500);
b1.setSize(300,300);
frame.add(b1);
b1.setSize(400,400);
b1.setText("Test button");
b1.setVisible(true);
frame.setVisible(true);
}
}
全部感谢:)
答案 0 :(得分:2)
最短的方法是implements ActionListener
到您的班级,然后将其添加到b1.addActionListener(this);
。