gpt4 book ai didi

java - 使用 java acm 包创建带有方形网格的 GUI

转载 作者:太空宇宙 更新时间:2023-11-04 14:44:57 27 4
gpt4 key购买 nike

请给我一个使用 java acm 包创建包含正方形网格(或按钮)的 GUI 的示例。

最佳答案

您可以使用方框来创建网格

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

关于java - 使用 java acm 包创建带有方形网格的 GUI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24517680/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com