Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8938661
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T10:40:50+00:00 2026-06-15T10:40:50+00:00

I need to display chessboard. I have a BoardPanel class which extends JPanel and

  • 0

I need to display chessboard. I have a BoardPanel class which extends JPanel and a GamePanel (also extending JPanel) class containing BoardPanel. GamePanel fills all the application frame.

I want BoardPanel to always be a square with size equal to the minimum of GamePanel’s width and height (if GamePanel’s width is greater than height there should be empty space on the left and right, if it’s smaller there should be empty space on top and bottom). It’s also important that BoardPanel should be displayed in the center of parent panel.

I wrote sth like this:

public GamePanel() {
    setLayout(new BorderLayout(0, 0));
    boardPanel = new BoardPanel(...);
    this.add(boardPanel, BorderLayout.CENTER);
    ...
}

and in BoardPanel:

public void paintComponent(Graphics g) {
    super.paintComponent(g);
    int size = Math.min(this.getParent().getHeight(), this.getParent().getWidth());
    this.setSize(size, size);
    ...
}

It resizes well, but chessboard is always displayed in top left corner of GamePanel (all the empty space is displayed on bot or right) and I don’t know how to fix it.

Any help? Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T10:40:51+00:00Added an answer on June 15, 2026 at 10:40 am

    Center it using a GridBagLayout.

    Centered, square panel

    import java.awt.*;
    import javax.swing.*;
    
    public class CenteredPanel {
    
        public static void main(String[] args) {
            Runnable r = new Runnable() {
                @Override
                public void run() {
                    JPanel gui = new JPanel(new GridBagLayout());
                    JPanel square = new SquarePanel();
                    square.setBackground(Color.RED);
                    gui.add(square);
    
                    JFrame f = new JFrame("SquareBoard");
                    f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                    f.setLocationByPlatform(true);
                    f.add(gui);
                    f.setMinimumSize(new Dimension(400,100));
                    f.pack();
                    f.setVisible(true);
                }
            };
            SwingUtilities.invokeLater(r);
        }
    }
    
    class SquarePanel extends JPanel {
        @Override
        public Dimension getPreferredSize() {
            Container c = this.getParent();
            int size = Math.min(c.getHeight(), c.getWidth());
            Dimension d = new Dimension(size,size);
            return d;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to display array of images in a single view which have various
I need to display all the employees in one webpart. I created the gridview
I need to display the parent from the first Element of input.xml Also I
I need display names directories in one directory. In dir I have directories and
I have a List of string and I need display the values of this
I need to display certain record (all the fields in the form populated according
I have string which i have to display in TextBlock, my TextBlock have some
i have the next list: SortedList<Decimal, KeyValuePair<string,string>> datos; And i need display this in
I need to display a UIWebView that shows images that have been downloaded by
I need to display a welcome message on a webpage. I'd like to have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.