简体   繁体   中英

How do i add an action to a JFrame JButton?

I have a JFrame gui im making and I need help. Im trying to find out how to add a action to my button. as in using it in a "if" statement or make i print something out when you push it.

thanks!

code:

package agui;



import javax.swing.*;


public class Agui extends JFrame {
public Agui() {
    setTitle("My Gui");
    setSize(400, 400);


    JButton button = new JButton("click me");
    JPanel panel = new JPanel();

    panel.add(button);

    this.getContentPane().add(panel);

    setVisible(true);
    setDefaultCloseOperation(EXIT_ON_CLOSE);

    }
public static void main(String[] args) {
    Agui a = new Agui();
}



}

You want the "addActionListener" method, something like:

        button.addActionListener(new ActionListener() { 
          public void actionPerformed(ActionEvent e) {
            System.out.println("You clicked the button");
          }
        }); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM