gpt4 book ai didi

java - 如何在 JFrame 中设置 JPanel 的大小?

转载 作者:行者123 更新时间:2023-11-30 11:07:11 25 4
gpt4 key购买 nike

我试图将一个 JPanel 放在全屏 JFrame 的中心,并具有定义的大小,但它总是在整个屏幕上拉伸(stretch)......

我尝试了 setBoundssetPreferredSize,但它们不起作用。

这是代码:

public static void showScene(){
//Create the frame to main application.
JFrame frame = new JFrame("Application"); // set the title of the frame
frame.setExtendedState(JFrame.MAXIMIZED_BOTH); // set the size, maximum size.
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

//Create the panel to store the main menu.
JPanel panel = new JPanel();

panel.setPreferredSize(new Dimension(500,200));
panel.setBackground(new java.awt.Color(0,0,255));

frame.add(panel,BorderLayout.CENTER);

}

public static void main (String[] args){

showScene();

}

最佳答案

BorderLayout 拉伸(stretch)内容以填充父容器。

如果您希望子项的尺寸小于父项,请使用其他一些 LayoutManager(尝试 FlowLayout)。


您可以使用以下代码更改布局。

Container contentPane = frame.getContentPane();
contentPane.setLayout(new FlowLayout(FlowLayout.CENTER, 0,90)));

frame.add(panel);

frame.pack();

如需进一步引用,请关注 visual guide to layout managers .

祝你好运。

关于java - 如何在 JFrame 中设置 JPanel 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29010125/

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