情况如下:我在borderlayout的西部有一个boxlayout(Y_AXiS)JPanel。在JPanel w / boxlayout内部,我有两个其他JPanels,我想垂直对齐(无论框架的尺寸如何,都推向屏幕的顶部)。但是,布局管理器似乎在两个JPanel之间放置了一个很大的垂直空间。我想也许一个gridlayout会更适合这个,但我不确定。我已经多次尝试谷歌寻求答案并纠正问题,没有运气。请帮忙!
package com.granet;
import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
public class CustomerOrganizer extends JFrame
{
public CustomerOrganizer()
{
JPanel topPanel = new JPanel();
topPanel.setBackground(Color.darkGray);
JLabel customerSlogan = new JLabel("Customer Organizer");
topPanel.add(customerSlogan);
JPanel leftPanel = new JPanel();
leftPanel.setBackground(Color.darkGray);
leftPanel.setBorder(new EmptyBorder(10,100,00,0));
leftPanel.setLayout(new BoxLayout(leftPanel, BoxLayout.Y_AXIS));
DrawPanel firstTab = new DrawPanel(Color.white, 350, 50);
DrawPanel secondTab = new DrawPanel(Color.white, 350, 50);
JLabel firstTabText = new JLabel("First Tab");
JLabel secondTabText = new JLabel("Second Tab");
firstTab.setBorder(new EmptyBorder(0,60,60,0));
secondTab.setBorder(new EmptyBorder(0,60,60,0));
firstTab.add(firstTabText);
secondTab.add(secondTabText);
leftPanel.add(firstTab);
leftPanel.add(secondTab);
firstTab.setAlignmentX(Component.LEFT_ALIGNMENT);
secondTab.setAlignmentX(Component.LEFT_ALIGNMENT);
/* DOESN'T WORK, I'm pretty sure this changes the point on the jpanel which used for alignment (top, bottom, left or right)
firstTab.setAlignmentY(Component.TOP_ALIGNMENT);
secondTab.setAlignmentY(Component.TOP_ALIGNMENT);
*/
add(topPanel, BorderLayout.NORTH);
add(leftPanel, BorderLayout.WEST);
pack();
}
public static void main(String[] args)
{
CustomerOrganizer frame = new CustomerOrganizer();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(700,400);
frame.setVisible(true);
}
}
DrawPanel.java
package com.granet;
import javax.swing.*;
import java.awt.*;
public class DrawPanel extends JPanel
{
Color color;
int width;
int height;
public DrawPanel(Color color, int width, int height)
{
this.color=color;
this.width=width;
this.height=height;
}
public DrawPanel()
{
this.color = Color.darkGray;
this.width=this.getWidth();
this.height=this.getHeight();
}
public void paintComponent(Graphics g)
{
g.setColor(color);
g.fillRect(0, 0, width, height);
}
}
这就是我在运行时看到的内容: http://concertforhope.net/citeforme/javabug.png
请注意,底部标签不会向上推到顶部标签。
NVM,我知道为什么。标签不是那么小,我用错误的方式填充背景(白框并不代表实际标签)。谢谢你的帮助。答案 0 :(得分:4)
这不是错误。 boxlayout应该在组件之间平均划分整个空间。
你可能想要垂直流动布局或类似的东西。
我真的建议你获得Google WindowBuilder(免费)并在GUI中使用布局。
在您的特殊情况下,您还可以考虑使用右侧的标签位置JTabbedPane。
答案 1 :(得分:4)
您也可以考虑Using Invisible Components as Filler来控制垂直间距。例如,org.gcs.kinetic.ControlPanel
使用Box.createVerticalStrut()
,而此example使用Box.createVerticalGlue()
。