请有人给我一个示例,创建一个包含使用java acm包的方块(或按钮)网格的GUI。
答案 0 :(得分:0)
您可以使用方框来创建网格
GRect []grect = new GRect[rows][colums];
for(int i=0; i<rows; i++){
for (int j=0; j<colums; j++){
grect[i][j] = new GRect(x, y, width, height); //here x and y are the x,y coordinates of the box
// widht and height are the width and height of the box
add(grect[i][j]);
}
}
有关详细信息,请参阅此link
答案 1 :(得分:0)
我认为使用GRect向JFrame添加正方形是可行的,无论如何都可以这样做。首先,你必须将类扩展到GraphicsProgram,类似这样的
public class your_class extends GraphicsProgram {
//here you can create the grid as I mentioned above
}