gpt4 book ai didi

java - 井字游戏我无法设置 x 按钮的范围

转载 作者:行者123 更新时间:2023-12-02 05:06:11 26 4
gpt4 key购买 nike

在我的 Tic-Tac-Toe 游戏中,我已经画好了线条,现在正在尝试放入按钮。我试图放入的第一个按钮,我试图设置边界,但它没有设置边界。它只是填满整个屏幕。如何让按钮仅位于右上角的方 block 中?

public class Project extends JFrame{

static JButton button = new JButton("");
static JButton button2 = new JButton("");
static JButton button3 = new JButton("");
static JButton button4 = new JButton("");
static JButton button5 = new JButton("");
static JButton button6 = new JButton("");
static JButton button7 = new JButton("");
static JButton button8 = new JButton("");
static JButton button9 = new JButton("");


public Project(){
setSize(1000, 750);
}

public void paint(Graphics g){
super.paint(g);
Graphics2D g2 = (Graphics2D) g;
Line2D line = new Line2D.Float(100, 100, 100, 400);
Line2D line2 = new Line2D.Float(200, 100, 200, 400);
Line2D line3 = new Line2D.Float(0, 200, 300, 200);
Line2D line4 = new Line2D.Float(0, 300, 300, 300);
g2.draw(line);
g2.draw(line2);
g2.draw(line3);
g2.draw(line4);
}

public static void main(String[] args){
Project t = new Project();
t.setVisible(true);
button.setBounds(0, 0, 50, 50);
t.add(button);
}
}

最佳答案

您的 Project 类扩展了 JFrame,并且 JFrame contentPane(接受新组件的 JFrame 容器)默认使用 BorderLayout。当您将组件添加到使用 BorderLayout 的容器而不指定该组件的位置时,默认情况下它会添加到 BorderLayout.CENTER 位置,从而有效地填充您的 GUI。有几种选择可以解决您的困境:

  • 按照 PM77-1 的建议使用 GridLayout。这样,3x3 网格将在相同大小的单元格中容纳所有 9 个按钮,从而填满容器。
  • 根本不使用按钮和 ActionListener,而是使用 MouseListenerListener 来检查按钮按下的位置,确定其是否为空单元格,并采取相应的操作。

关于java - 井字游戏我无法设置 x 按钮的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27771912/

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