java - 边框布局间距/边距

标签 java swing layout-manager margins grid-layout

对于我的 Java 初学者类(class),我们制作了一个自动化的 Tic-Tac-Toe 游戏,现在我们正在创建一个 GUI 来玩它。但是,我在正确设置间距/边距方面遇到了很多麻烦。到目前为止,我只是试图获得 GUI 的总体框架,然后我将回去实际实现我已经制作的 Tic-Tac-Toe 游戏。到目前为止,我有这个:

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

import javax.swing.border.*;

public class ITTTGUI extends JFrame implements ActionListener{

    //butimport javax.swing.border.*;tons
    private JPanel sizePanel;
    private JPanel buttonPanel;
    private JPanel displayPanel;
    private JPanel bottomPanel;
    private JTextField size;
    private JButton rebuildButton;
    private JButton[] buttons;
    private JLabel output;

    //constructor
    public NumberChooser(){
        setTitle("BitchFace");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //content pane
        Container cp = getContentPane();

        //add a panel for the size
        sizePanel = new JPanel();
        sizePanel.setBorder(new EmptyBorder(5, 5, 5, 5) );//adds margin to panel
        sizePanel.setLayout(new FlowLayout());
        size = new JTextField("3",5);
        sizePanel.add(new JLabel("N"));
        sizePanel.add(size);
        rebuildButton = new JButton("Rebuild");
        rebuildButton.addActionListener(this);
        sizePanel.add(rebuildButton);
        //add bottom panel for output

            sizePanel.add(new JButton("Player:"), BorderLayout.EAST);
            sizePanel.add(new JButton("Move:"), BorderLayout.EAST);
            sizePanel.add(new JButton("Winner:"), BorderLayout.EAST);


        //add a panel for the numbers
        buttonPanel = new JPanel();
        buttonPanel.setBorder(new EmptyBorder(5, 5, 5, 5) );//adds margin to panel
        buildButtonsPanel();

        //add bottom panel for output
        JPanel bottomPanel = new JPanel();
        bottomPanel.setBorder(new EmptyBorder(5, 5, 5, 5) );//adds margin to panel
        bottomPanel.add(new JButton("New Game"), BorderLayout.SOUTH);
        bottomPanel.add(new JButton("Advise"), BorderLayout.SOUTH);
        bottomPanel.add(new JButton("Quit"), BorderLayout.SOUTH);




        //add panels to main pane
        cp.setLayout(new BorderLayout());
        cp.add(sizePanel, BorderLayout.EAST);
        cp.add(buttonPanel, BorderLayout.CENTER);
        cp.add(bottomPanel, BorderLayout.SOUTH);
        pack();
    }

    //this is a helper method to rebuild the buttons panel
    private void buildButtonsPanel(){
        int n = 3;
        try{
            n = Integer.parseInt(size.getText());
        }catch(Exception e){
            e.printStackTrace();
        }
        buttonPanel.removeAll();
        buttonPanel.setLayout(new GridLayout(n,n,4,4));
        buttons = new JButton[n*n];
        for(int i=0; i < buttons.length; i++){

            buttons[i] = new JButton("*");
            buttonPanel.add(buttons[i]);
            buttons[i].addActionListener(this);
        }
        revalidate();
        repaint();
        pack();
    }

    public void actionPerformed(ActionEvent e){
        Object s = e.getSource();
        //check to see if the action came from the rebuild button
        if(s == rebuildButton){
            buildButtonsPanel();
        }
        //otherwise it came from the grid

    }

    //entry point
    public static void main(String[] args){
        //create the GUI
        NumberChooser nc = new NumberChooser();
        nc.setVisible(true);
    }

}

不一定要精确,大体相同即可。 而且也没有 X 或获胜者变量,因为我还没有实现它。我还尝试将边距从 (5,5,5,5) 更改为 (1,1,1,1),但这根本没有改变任何东西,这也让我感到困惑。

任何有关此问题的帮助,或者如何通常完成这项任务,我们将不胜感激。

(它不接受我的图像。抱歉。) 链接为:

问题是看起来像这样: What my GUI looks like

https://i1224.photobucket.com/albums/ee362/Devolutor/COPimage1_zps459f304b.png

它应该看起来像这样: What it is supposed to look like

http://i1224.photobucket.com/albums/ee362/Devolutor/COPimage2_zps8981c846.png

最佳答案

要在按钮之间留出更多空间,请在网格布局中使用大于 4 的像素数:

buttonPanel.setLayout(new GridLayout(n,n,4,4));

要在右侧使用网格而不是流,请使用 GridLayout(就像对按钮所做的那样,但具有 4 行和 2 列)而不是 FlowLayout。

关于java - 边框布局间距/边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16066055/

相关文章:

java - Miglayout 网格约束自定义布局

java - 似乎无法正确打印我的代码

java - 如何加粗文本Android String的一部分

java - JFrame 总是在最前面

Java Swing 用鼠标改变宗教布局的大小

java - “BoxLayout 无法与 .add 共享”

java - 有没有办法在 Apache Tomcat 6.x 启动期间执行代码来执行初始化例程等?

java - angularJs上传文件错误: The current request is not a multipart request

java - 正确调整 JTable 的一列标题的大小

java - Jframe 执行时大小不正确,有什么原因吗?