我可以在JPanels上使用actionListeners吗?

问题描述 投票:0回答:1

我试图添加和actionListener到JPanel它自己,但不断得到错误“找不到符号”。我只是想知道是否可以这样做,因为我希望能够点击面板并进行颜色更改。任何帮助,将不胜感激。

这是我到目前为止所拥有的。

import java.awt.*;
import javax.swing.*;
import javax.swing.JPanel.*;
import java.awt.Color.*;
import java.awt.event.*;
/**
 * Write a description of class SimpleFrame here.
 *
 * @author OFJ2
 * @version 
 */
public class Game extends JFrame 
            implements ActionListener
{
private final int ROWS = 5;
private final int COLUMS = 2;
private final int GAP = 2;
private final int SIZE = ROWS * COLUMS;
private int x;
private JPanel leftPanel = new JPanel(new GridLayout(ROWS,COLUMS, GAP,GAP));
private JPanel [] gridPanel = new JPanel[SIZE];
private JPanel middlePanel = new JPanel();    
private JPanel rightPanel = new JPanel();
private Color col1 = Color.GREEN;
private Color col2 = Color.YELLOW;
private Color tempColor;


public Game()
{
    super("Chasing Bombs OFJ2");
    setSize(200,200);
    setVisible(true);
    makeFrame();
}


public void makeFrame()
{
    Container contentPane = getContentPane();
    contentPane.setLayout(new GridLayout());
    leftPanel.setLayout(new GridLayout(ROWS, COLUMS));

    //JLabel label2 = new JLabel("Pocahontas");

    JButton playButton = new JButton("Play Game");
    JButton exitButton = new JButton("Exit");


    JButton easyButton = new JButton("Easy");
    JButton mediumButton = new JButton("Medium");
    JButton hardButton = new JButton("Hard");


    add(leftPanel);

    add(middlePanel, new FlowLayout());

    add(rightPanel);

    setGrid();


    middlePanel.add(playButton);
    middlePanel.add(exitButton);
    rightPanel.add(easyButton);
    rightPanel.add(mediumButton);
    rightPanel.add(hardButton);
    leftPanel.setBackground(Color.PINK);
    middlePanel.setBackground(Color.RED);

    easyButton.addActionListener(this);
    mediumButton.addActionListener(this);
    hardButton.addActionListener(this);
    playButton.addActionListener(this);
    exitButton.addActionListener(this);



}

public void setGrid()
{
    for(int x = 0; x < SIZE; x++) {
           gridPanel[x] = new JPanel();
           gridPanel[x].setBorder(BorderFactory.createLineBorder(Color.BLACK));
           leftPanel.add(gridPanel[x]);
           gridPanel[x].setBackground(Color.GREEN);
           gridPanel[x].addActionListener(this);

        }
}

@Override
public void actionPerformed(ActionEvent e)
{
    Object source = e.getSource();
    if (source == gridPanel[0]){
        gridPanel[x].setBackground(Color.BLACK);
    }
}
}

我试图找到是否有任何其他方法来做到这一点,但无法找到任何东西。是否有可能我必须添加一个按钮来填充每个面板才能使其工作?

谢谢!

java swing user-interface jpanel actionlistener
1个回答
0
投票

它默认不是addActionListener,下面的代码是参考建议。

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.ArrayList;
import java.util.List;

class GPanel extends JPanel {
    private List<ActionListener> listenerList = new ArrayList<>();

    public GPanel() {
        addMouseListener(new MouseAdapter() {
            @Override
            public void mouseClicked(MouseEvent e) {
                var event = new ActionEvent(this, ActionEvent.ACTION_PERFORMED, "GPanel");
                for (var i : listenerList) {
                    i.actionPerformed(event);
                }
            }
        });
    }

    public void addActionListener(ActionListener listener) {
        listenerList.add(listener);
    }
}

public class ActionListenerTest extends JFrame {
    public static void main(String[] args) {
        new ActionListenerTest();
    }

    public ActionListenerTest() {
        GPanel test = new GPanel();
        test.setBackground(Color.BLUE);
        add(test);
        test.addActionListener(e-> {
            System.out.println("Click: " + e.getActionCommand());
        });
        pack();
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setVisible(true);
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.