我有一个GridLayout面板
但是当我尝试运行程序时,只显示100中的第一个按钮。 此外,只有当我将光标移到它们上面时,其余部分才会出现。 怎么了?
这是全班(Life.CELLS = 10,CellButton是一个扩展JButton的类)
public class MainLayout extends JFrame {
public MainLayout() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(650, 750);
setLayout(new FlowLayout());
//setResizable(false);
final JPanel gridPanel = new JPanel(new GridLayout(Life.CELLS, Life.CELLS));
for (int i=0; i<Life.CELLS; i++) {
for (int j=0; j<Life.CELLS; j++) {
CellButton jb = new CellButton(i, j);
jb.setPreferredSize(new Dimension(jb.getIcon().getIconHeight(), jb.getIcon().getIconWidth()));
buttons[i][j] = jb;
grid[i][j] = false;
gridPanel.add(jb);
}
}
add(gridPanel);
}
}
这是CellButton的代码
package classes;
import javax.swing.JButton;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
public class CellButton extends JButton {
private int x;
private int y;
boolean alive;
ImageIcon icon;
boolean next;
// icons for grids
final ImageIcon dead =
new ImageIcon(JFrame.class.getResource("/images/image1.gif"));
final ImageIcon live =
new ImageIcon(JFrame.class.getResource("/images/image2.gif"));
public CellButton(int X, int Y) {
super();
x = X;
y = Y;
alive = false;
icon = dead;
setIcon(icon);
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public boolean isAlive() {
return alive;
}
public void relive() {
alive = true;
icon = live;
setIcon(icon);
}
public void die() {
alive = false;
icon = dead;
setIcon(icon);
}
public void setNext(boolean n) {
next = n;
}
public boolean getNext() {
return next;
}
public ImageIcon getIcon() {
return icon;
}
}
答案 0 :(得分:0)
您必须在代码中执行其他操作。请发布您正在使用的确切代码。以下测试显示了我期望的10x10 JButton网格;
import java.awt.GridLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class GridLayoutTest
{
public static void main(String[] args)
{
JFrame frame = new JFrame();
JPanel panel = new JPanel(new GridLayout(10,10,10,10));
for (int i=0; i<100; i++)
{
panel.add(new JButton(String.valueOf(i)));
}
frame.add(panel);
frame.setSize(600,600);
frame.setVisible(true);
}
}
编辑:
我发现您的问题,您已错误地覆盖了getX()
中的getY()
和JComponent
方法。摆脱int x
和int y
个变量以及getX()
和getY()
方法,JButton
已经提供了这些变量。