我想知道如果在我的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);
}
}
答案 0 :(得分:1)
有三种方法可以做到。
button.addActionListener(new ActionListener() {
public void actionPerfored(ActionEvent e)
{
// your code goes here
}
});
有关详细信息,请参阅ActionListener API