我在这里阅读了很多科目,但我无法用我想要的布局制作窗口。 我只是希望我的所有图形对象都是行样式,如第一张图片所示:http://docs.oracle.com/javase/tutorial/uiswing/layout/box.html
我已经尝试了GridLayout,但它仍然是我的第一个按钮巨人然后,当我添加文本字段时,它变得越来越小了?!
这是我没有所有导入的代码:
public class TestScrollPane extends JFrame implements ActionListener{
Dimension dim = new Dimension(200 , 50);
JButton button;
JPanel panel = new JPanel();
JScrollPane scrollpane = new JScrollPane(panel);
public TestScrollPane(){
scrollpane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
this.add(scrollpane);
//panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
this.setSize(300, 400);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLocationRelativeTo(null);
button = new JButton("click me");
button.setPreferredSize(dim);
panel.add(button);
button.addActionListener(this);
}
public void actionPerformed(ActionEvent e){
if(e.getSource() == button ){
JTextField txt = new JTextField(); // we add a new button
txt.setPreferredSize(dim);
panel.add(txt);
SwingUtilities.updateComponentTreeUI(this); // refresh jframe
}
}
public static void main(String[] args){
TestScrollPane test = new TestScrollPane();
}
}
我只想每行一个按钮。
答案 0 :(得分:1)
BoxLayout
将尊重组件的最小/最大尺寸。
由于某种原因,文本字段的最大高度不受限制,因此文本字段将获得所有可用空间。
所以你可以这样做:
JTextField txt = new JTextField(10); // we add a new button
//txt.setPreferredSize(dim); // don't hardcode a preferrd size of a component.
txt.setMaximumSize(txt.getPreferredSize());
此外:
//SwingUtilities.updateComponentTreeUI(this); // refresh jframe
请勿使用上述方法。这用于LAF的改变。
相反,当您从可见的GUI添加/删除组件时,您应该使用:
panel.revalidate();
panel.repaint();