繁体   English   中英

我无法在基于 swing 的 GUI 中实现 ActionListener

[英]I am having trouble implementing ActionListener, into a swing based GUI

我希望能够检测到何时单击了我的按钮(曾经如此方便地命名的按钮),但我无法做到这一点。 这是一些代码

import java.awt.GridLayout;
import java.awt.event;
import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JButton;

public class Main implements ActionListener
//im having immense problems implementing the action listener. 
{
  public static void main(String[] args) 
  {
    new GUI(); // calling in main.
    System.out.print("test for bad wifi because my wifi hates me"); // I'm using a cloud based ide
  }

  JFrame frame1 = new JFrame();
  JPanel panel1 = new JPanel();
  JFrame frame2 = new JFrame(); //not in use yet
  JPanel panel2 = new JPanel(); //""

  public void GUI()
  {
    JButton button = new JButton("moment"); 
    button.addActionListener(this);

    panel1.setBorder(BorderFactory.createEmptyBorder( 30, 30, 30, 30 )); 
    panel1.setLayout(new GridLayout(0, 1));
    panel1.add(button); 

    frame1.add(panel1, BorderLayout.CENTER); // frame is on the pannel or vice versa
    frame1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // funny close
    frame1.setTitle("Final.");
    frame1.pack();
    frame1.setVisible(true);
  }

  @Override
  public void actionPerformed(ActionEvent e)
  {
    
  }
}

任何帮助表示赞赏

下载并使用 IDE。

Oracle 有一个有用的教程,使用 JFC/Swing 创建 GUI 跳过 Netbeans 部分。

必须按特定顺序调用JFrame方法。 这是我用于所有 Swing 应用程序的顺序。

这是我最终得到的完整的可运行代码。

import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;

public class SimpleJButtonExample implements ActionListener {
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new SimpleJButtonExample().createAndShowGUI(); // calling in main.
            }
        });
        
        // I'm using a cloud based ide
        System.out.println("test for bad wifi because my wifi hates me"); 
    }

    JFrame frame1 = new JFrame();
    JPanel panel1 = new JPanel();
    JFrame frame2 = new JFrame(); // not in use yet
    JPanel panel2 = new JPanel(); // ""

    public void createAndShowGUI() {
        JButton button = new JButton("moment");
        button.addActionListener(this);

        panel1.setBorder(BorderFactory.createEmptyBorder(30, 30, 30, 30));
        panel1.setLayout(new GridLayout(0, 1));
        panel1.add(button);

        frame1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // funny close
        frame1.setTitle("Final");
        frame1.add(panel1, BorderLayout.CENTER); // panel is within the frame
        frame1.pack();
        frame1.setVisible(true);
    }

    @Override
    public void actionPerformed(ActionEvent e) {
        System.out.println("Button clicked");
    }

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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