setLayout()到BoxLayout导致jpanel消失



这是我的第一个帖子,所以如果我没有包括我需要的所有信息来全面描述我的问题,我提前道歉。

由于使用BoxLayout时遇到挫折,我在显示JFrame时遇到了麻烦。我想创建水平的使用框布局来创建两个部分,然后每个部分都将再次使用BoxLayout(都是垂直的)。但是,当我尝试将JPanel的布局设置为BoxLayout时,面板消失了。此外,我所选择的首选维度与我给它们的值不相关。不是分成67/33,而是85/15。

我试过改变jpanel的布局,但进展甚微。此外,我试过玩尺寸,虽然我可以得到一个视觉我很好,但我仍然想知道为什么我的67/33分裂在理论上不起作用。

下面是我的代码:
import javax.swing.*;
import java.awt.*;
public class test {
public static void beginPoS() {
// instantiating the opening frame
JFrame openingPage = new JFrame("Point of Sales Simulation");
openingPage.setSize(750, 600);
openingPage.setVisible(true);
openingPage.setLocationRelativeTo(null);
openingPage.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
openingPage.setResizable(false);
Container contents = openingPage.getContentPane();
contents.setLayout(new BorderLayout());
JPanel overall = new JPanel();
overall.setLayout(new BoxLayout(overall, BoxLayout.X_AXIS));
JPanel panel1 = new JPanel();
panel1.setBackground(Color.RED);
panel1.setPreferredSize(new Dimension(300, 600));
panel1.setLayout(new BoxLayout(panel1, BoxLayout.Y_AXIS));
JPanel panel2 = new JPanel();
panel2.setLayout(new BoxLayout(panel2, BoxLayout.Y_AXIS));
panel2.setBackground(Color.GREEN);
panel2.setPreferredSize(new Dimension(50, 600));
overall.add(panel1);
overall.add(panel2);
openingPage.add(overall);
}
public static void main(String[] args) {
beginPoS();
}
}

多期:

panel1.setLayout(new BoxLayout(panel1, BoxLayout.Y_AXIS));
JPanel panel2 = new JPanel();
panel2.setLayout(new BoxLayout(panel2, BoxLayout.Y_AXIS));

Box布局看起来不像您设置了子面板的布局并且没有输入任何组件。

所以每个子面板的首选大小是(0,0),所以它不能生长。

删除上面两个setLayout(…)语句

不是分成67/33,而是分成85/15。

你打错字了。一个面板的宽度为50,另一个为300。

BoxLayout将首先分配首选空间。由于您将帧的大小硬编码为750,因此将剩下大约400像素的空间。然后BoxLayout将为每个面板分配200像素来填充可用空间。

openingPage.setSize(750, 600);
openingPage.setVisible(true);
openingPage.setLocationRelativeTo(null);
openingPage.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
openingPage.setResizable(false);

上述代码应在所有组件已添加到框架后执行,并且顺序很重要。它应该更像:

openingPage.setResizable(false);
//openingPage.setSize(750, 600);
openingPage.pack();
openingPage.setVisible(true);
openingPage.setLocationRelativeTo(null);
openingPage.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

通常你应该使用pack()而不是setSize(...),这个布局管理器将以他们喜欢的大小显示组件。您希望在包装框架之前设置可调整大小属性,因为这将影响框架的边框大小。pack方法需要这些信息。

我建议你看一下布局管理器的Swing教程中的演示代码。代码将向您展示如何更好地构建您的类,以便在Event Dispatch Thread (EDT).

上创建GUI。

相关内容

  • 没有找到相关文章

最新更新