作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图将一个 JPanel 放在全屏 JFrame 的中心,并具有定义的大小,但它总是在整个屏幕上拉伸(stretch)......
我尝试了 setBounds
、setPreferredSize
,但它们不起作用。
这是代码:
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/
我是一名优秀的程序员,十分优秀!