我最近刚接触Java,现在还是菜鸟。我使用for循环添加了按钮,创建了一个9x9的JPanels面板。我将如何创建一个动作侦听器,以允许我选择单击时将显示为JButton的背景色的其他颜色?我正在尝试制作一个微型像素艺术程序。

最佳答案

它看起来像这样。在此示例中,[row][col]引用网格的行和列值。确保创建计数器(private static int counter = 0;)。否则您会得到很多错误。这是代码:

JBut[row][col].addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {

        typeOfButton button = (typeOfButton) e.getSource();
        int row = button.getRow();
        int col = button.getCol();

        counter++;
        if (counter == 1) {
            JBut[row][col].setBackground(Color.RED);
        }
        else if (counter == 2) {
            JBut[row][col].setBackground(Color.ORANGE);
        }
        else if (counter == 3) {
            JBut[row][col].setBackground(Color.YELLOW);
        }
        else if (counter == 4) {
            JBut[row][col].setBackground(Color.GREEN);
        }
        else if (counter == 5){
            JBut[row][col].setBackground(Color.BLUE);
        }
        else if (counter == 6){
            JBut[row][col].setBackground(Color.MAGENTA);
        }
        else {
            JBut[row][col].setBackground(Color.BLACK);
            counter = 0; //makes color cycle repeat, starting with red
        } //end else
    } //end actionPerformed
}); //end ActionListener


显然,执行此操作的简单方法是将巨型if语句放入名为determineColor()的新方法中。

09-12 18:03