我想知道如果在我的 JFrame 中单击了一个 jbutton,如何启动一个动作。
我试过寻找答案,但运气不佳。
这就是我现在所拥有的,我基本上只是希望在单击按钮时显示一些文本。
public class Slots {
public static void main(String[] args){
Slots();
}
public static void Slots(){
//JFRAME
JFrame f = new JFrame("Slots Game");
f.setSize(500, 500);
f.setLocationRelativeTo(null);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setVisible(true);
f.setResizable(false);
//JButton
JButton Button = new JButton("Start");
f.add(Button, BorderLayout.PAGE_END);
f.setVisible(true);
}
}