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 9224121
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T04:14:19+00:00 2026-06-18T04:14:19+00:00

I have JPanel with a border, the problem is that when I add the

  • 0

I have JPanel with a border, the problem is that when I add the panel on the JFrame it takes the panel size although I set the preferred size for the panel using setPreferredSize. The layout of the frame is ‘BoxLayout’ and here’s the code:

public class ActionForm extends JFrame {


    JPanel namePanel;
    JPanel descPanel;
    JLabel actionName;
    JLabel nameLabel;
    JTextField nameTextField, descTextField;
    FlowLayout toolBarLayout = new FlowLayout();     

    public ActionForm() {
        this.setLayout(new BoxLayout(this.getContentPane(), BoxLayout.Y_AXIS));
        TitledBorder nameBorder= BorderFactory.createTitledBorder(
            "Change Description");
        nameBorder.setTitleJustification(TitledBorder.LEFT);
        namePanel = new JPanel(toolBarLayout);
        namePanel.setPreferredSize(new Dimension(150, 150));
        nameLabel = new JLabel("ButtonName");
        nameTextField = new JTextField("Action's Name", 50);
        namePanel.add(nameLabel);
        namePanel.add(nameTextField);
        namePanel.setBorder(nameBorder);
        namePanel.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
        this.add(namePanel);
    }

    public static void main(String[] args) {
        ActionForm form = new ActionForm();
        form.setVisible(true);
        form.setSize(970, 500);
        form.setResizable(false);
    }
}

Why the size of the panel doesn’t change?

  • 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-18T04:14:20+00:00Added an answer on June 18, 2026 at 4:14 am
    • BoxLayout accepting Min/Max/preferredSize that came from JComponents layed by this LayoutManager

    • (I’m don’t want to comment something, because my answer will be so long) please to compare your code with this code example, there are implemented all good (required and important) Swing rulles

    for example

    import java.awt.ComponentOrientation;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import javax.swing.BorderFactory;
    import javax.swing.BoxLayout;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.SwingUtilities;
    import javax.swing.border.TitledBorder;
    
    public class ActionForm {
    
        private static final long serialVersionUID = 1L;
        private JFrame frame;
        private JPanel namePanel;
        private JLabel nameLabel;
        private JTextField nameTextField;
        private FlowLayout toolBarLayout = new FlowLayout();
    
        public ActionForm() {
            TitledBorder nameBorder = BorderFactory.createTitledBorder(
                "Change Description");
            nameBorder.setTitleJustification(TitledBorder.LEFT);
            namePanel = new JPanel(toolBarLayout);
            namePanel.setPreferredSize(new Dimension(150, 150));// hardCoded sizing
            namePanel.setMaximumSize(new Dimension(250, 150));  // hardCoded sizing
            namePanel.setMinimumSize(new Dimension(150, 150));  // hardCoded sizing
            nameLabel = new JLabel("ButtonName");
            nameTextField = new JTextField("Action's Name", 10);
            namePanel.add(nameLabel);
            namePanel.add(nameTextField);
            namePanel.setBorder(nameBorder);
            namePanel.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
            frame = new JFrame("Mix / Max / PreferredSize for BoxLayout");
            frame.getContentPane().setLayout(new BoxLayout(frame.getContentPane(),
                BoxLayout.Y_AXIS)); // otherwise nice exceptions java.awt.AWTError:
                                    // BoxLayout can't be shared
            frame.add(namePanel);
            frame.setPreferredSize(new Dimension(970, 500));
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setResizable(false);
            frame.pack();
            frame.setVisible(true);
        }
    
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
    
                @Override
                public void run() {
                    ActionForm form = new ActionForm();
                }
            });
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have problem with creating border for an icon in JLabel. I have JPanel
What I've got here is a JPanel with a rounded border that is set
I have a class extending JPanel that I want to embed into a JFrame
My current problem is that I have a JFrame with a 2x2 GridLayout. And
I have a JFrame, in this JFrame I have a JPanel that I draw
I have a JFrame with JScrollPane in it. I have JPanel inside a scrollPane.
I have a JPanel that has a button in it. The location of the
I have a JPanel (A) which contains another JPanel (B). Each panel implements a
I have a JPanel which uses a BoxLayout in the X_AXIS direction. The problem
I have a JPanel that encapsulates two JPanels, one on top of the other.

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.