簡體   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