[JButton仅在可见性设置为True-Java时有效

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

我基本上是在尝试制作一个简单的跳棋游戏,我需要用户只能看到图块和碎片,而不是按钮。当我将可见性设置为True时,该程序通过向我显示“嘿按钮已按下!”的测试消息而工作。但是,当我将可见性设置为False(我需要将其设置为)时,我不再收到测试消息。我从通用的google搜索中看到的与此相关的唯一论坛问题是使用重绘和重新验证,但是这些无效,因此我删除了这两行代码。我通常会有一个很棒的按钮类,但是由于我的代码只接受静态的而不是正常的,所以我必须直接在主类中实现jbutton。那么到底是什么问题呢?这是我的代码,在此先感谢。

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;
import java.util.*;

@SuppressWarnings("serial")
public class CheckersMain extends JButton implements ActionListener {

    private static JFrame window;
    private static Color winBackground=Color.GRAY;
    private static Color tile1Color=Color.WHITE;
    private static Color tile2Color=Color.BLACK;
    private static int windowWidth=1000;
    private static int windowHeight=1000;
    private static int setScreenLoc=500;
    private static int tileDimention=100;
    private static Board board;
    private static ArrayList<JButton> allButtons=new ArrayList<JButton>();
    private static ArrayList<Tile> allTiles;

    public static void main(String[] args) {
        window=new JFrame();
        window.setLayout(null);
        window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        window.setTitle("Checkers");
        window.setLocation(setScreenLoc,setScreenLoc);
        window.setSize(windowWidth,windowHeight);
        window.setResizable(false);
        window.getContentPane().setBackground(winBackground);
        window.setVisible(true);
        board=new Board(window,tileDimention,tile1Color,tile2Color);
        allTiles=board.setUp();
        setUpButtons();
        window.repaint();
    }

    private static void setUpButtons() {
        for (int i=0;i<allTiles.size();++i) {
            Tile currentTile=allTiles.get(i);
            JButton button=new JButton();
            button.setSize(tileDimention,tileDimention);
            button.setLocation(currentTile.getXlocation(),currentTile.getYlocation());
            window.add(button,0);
            button.addActionListener(new CheckersMain());
            button.setVisible(false);
            allButtons.add(button);
        }
    }

    private void buttonPressed() {
        System.out.println("Hey a button was pressed!");
    }
    public void actionPerformed(ActionEvent frame) {
        for (int i=0;i<allButtons.size();++i) {
            if (frame.getSource()==allButtons.get(i)) {
                buttonPressed();
            }
        }
    }
}
java swing jbutton visibility static-methods
1个回答
0
投票

这听起来像是使用玻璃窗格的好地方:https://docs.oracle.com/javase/tutorial/uiswing/components/rootpane.html

玻璃窗格是不可见的,但仍会收到鼠标移动和单击事件。在玻璃窗格上添加一个单击侦听器,然后获取鼠标位置,然后检查该位置是否在您的“隐藏”按钮所在的空间上方。

© www.soinside.com 2019 - 2024. All rights reserved.