如何居中JPanel(包含JBox,但不一定)?

时间:2016-12-08 13:27:24

标签: java swing layout center layout-manager

我一直在寻找大约2个小时,并阅读方法和教程,但由于某些原因,我的程序仍然没有按预期运行。

我想把那个包含一个包含一些按钮的面板放在屏幕中央。有一种方法可以使用RigidBox来实现它,但它的硬编码大小与我当前的窗口/屏幕一样大,而且我想要的东西无论从哪里打开都会居中。

    package layout;

import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.GridLayout;

import javax.swing.*;

public class Layout2 {

    public static void main(String[] args) {

        //The window that opens when you run the application
        JFrame mainWindow = new JFrame("Solitare Anca Version 2016");
        mainWindow.setSize(1000, 800);
        mainWindow.setLocation(460, 140);

        //The main menu bar, default in top left of the window it belongs to I think?
        JMenuBar mainMenu = new JMenuBar();
        //JMenu's=the menus in a bar
        JMenu file = new JMenu("Home");
        //Items in each menu
        JMenuItem save=new JMenuItem("Save progress");
        file.add(save);
        JMenuItem load=new JMenuItem("Load game");
        file.add(load);
        JMenuItem savexit=new JMenuItem("Save & exit");
        file.add(savexit);
        JMenuItem close=new JMenuItem("Close game");
        file.add(close);
        JMenu options = new JMenu("Options");
        JMenuItem changeback=new JMenuItem("Pick another card back");
        options.add(changeback);
        JMenuItem changecolor=new JMenuItem("Modify background color");
        options.add(changecolor);
        JMenuItem changelang=new JMenuItem("Change language");
        options.add(changelang);
        JMenuItem sound=new JMenuItem("Sound options");
        options.add(sound);
        JMenu help = new JMenu("Help");
        JMenuItem rules=new JMenuItem("Rules");
        help.add(rules);

        //Ading the menus to the bar
        mainMenu.add(file);
        mainMenu.add(options);
        mainMenu.add(help);

        JPanel content=new JPanel();

        JPanel butPan = new JPanel();
        butPan.setBackground(Color.BLACK);

        JButton okbut = new JButton("START THE GAME");
        JButton exitbut = new JButton("   EXIT   ");
        Box butBox=Box.createVerticalBox();
        butBox.add(okbut);
        butBox.add(exitbut);
        butPan.add(BorderLayout.SOUTH, butBox);


        //Set bg of the main window to the very familiar default green
        content.setBackground(Color.decode("#008001")); 
        content.add(BorderLayout.SOUTH,butPan);

        mainWindow.setJMenuBar(mainMenu);
        mainWindow.setContentPane(content);
        mainWindow.setVisible(true);

        // mainWindow.setContentPane(content);

    }

}

在这里,我只是尝试了不同的方法来移动那个该死的面板/盒子,但它只是不会让步......

3 个答案:

答案 0 :(得分:2)

您可以尝试:

mainWindow.setLocationRelativeTo(null);

如果将null作为参数,则会将您的JFrame置于屏幕中心。

还要确保在 更改框架尺寸或打包框架后调用

答案 1 :(得分:2)

编辑:建议检查Andrew Thompson对代码解决方案的回答。

只是为了添加答案,LayoutManager通常是Swing面板的任何格式问题的答案。有几个不同的经理(范围广泛,通常权衡简单的功能)。使用核心Java / Swing,我建议学习GridBagLayoutJavadoc)。它非常强大(如果同样详细),并且可以让您创建几乎任何您想要的布局。在现实世界中,您可能会使用多个。

您可以了解LayoutManager here的更多信息。

答案 2 :(得分:2)

以下是将组件置于中心的四种方法:

4 Centered Components

import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;

class CenterComponent {

    public static JLabel getLabel(String text) {
        return getLabel(text, SwingConstants.LEFT);
    }

    public static JLabel getLabel(String text, int alignment) {
        JLabel l = new JLabel(text, alignment);
        l.setBorder(new LineBorder(Color.RED, 2));
        return l;
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JPanel p = new JPanel(new GridLayout(2,2,4,4));
                p.setBackground(Color.black);
                p.setBorder(new EmptyBorder(4,4,4,4));

                JPanel border = new JPanel(new BorderLayout());
                border.add(getLabel(
                    "Border", SwingConstants.CENTER), BorderLayout.CENTER);
                p.add(border);

                JPanel gridbag = new JPanel(new GridBagLayout());
                gridbag.add(getLabel("GridBag"));
                p.add(gridbag);

                JPanel grid = new JPanel(new GridLayout());
                grid.add(getLabel("Grid", SwingConstants.CENTER));
                p.add(grid);

                // from @0verbose
                JPanel box = new JPanel();
                box.setLayout(new BoxLayout(box, BoxLayout.X_AXIS ));

                box.add(Box.createHorizontalGlue());
                box.add(getLabel("Box"));
                box.add(Box.createHorizontalGlue());
                p.add(box);

                JFrame f = new JFrame("Streeeetch me..");
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.setContentPane(p);
                f.pack();
                f.setLocationByPlatform(true);
                f.setVisible(true);
            }
        });
    }
}