JSeparator不在我的JPanel中的正确位置
|
所以我的代码如下:
JPanel mainPanel = new JPanel();
mainPanel.setBorder(new EmptyBorder(50,50,0,10));
BoxLayout layout = new BoxLayout(mainPanel, BoxLayout.Y_AXIS);
mainPanel.setLayout(layout);
JSeparator separate = new JSeparator(SwingConstants.HORIZONTAL);
mainPanel.add(separate);
mainPanel.add(new JButton());
mainPanel.add(new JButton());
我一直遇到的问题是,而不是我的面板看起来像:
______________
| |
| ------ |
| Button |
| Button |
| |
| |
| |
______________
由于某种原因,它在按钮和分隔符之间放置了大量空间,因此看起来像:
______________
| |
| ------ |
| |
| |
| |
| Button |
| Button |
______________
为了我的一生,我无法将按钮放在JSeparator旁边,有什么想法吗?
没有找到相关结果
已邀请:
2 个回复
翁茄口霉氖
惭法搽