我正在开发connect 4程序,但鼠标事件遇到了麻烦。这是UI的体系结构。

public class PlayConnect implements  MouseListener {

mainFrame = new JFrame("Connect-4");
basePanel = new JPanel();
mainFrame.add(basePanel);
gridPanel = new JPanel();
gridPanel.addMouseListener(this);
gridPanel.setLayout(new GridLayout(6, 7));
   for (int i = 0; i < 6; i++) {
            for (int j = 0; j < 7; j++) {
                Cell tempCell = new Cell(i,j);
                gridUI[i][j] = tempCell;
                gridPanel.add(tempCell);


            }
}


现在,单元格定义为

public class Cell extends JPanel implements  MouseListener{
}


单击单元格时将调用Cell的MouseClicked方法,但不会为类PlayConnect调用该方法。我不知道为什么。我确实尝试将gridPanel的类型更改为JLayeredPane,但它也无济于事。

最佳答案

您没有将gridPanel作为MouseListener添加到单元格中

        for (int j = 0; j < 7; j++) {
            Cell tempCell = new Cell(i,j);
            gridUI[i][j] = tempCell;
            gridPanel.add(tempCell);
            tempCell.addMouseListener(this);
        }

10-07 13:11