我正在使用GUI来管理银行账户。
我在JPanel
中使用JFrame
将所有帐户注册列为按钮,并使用JScrollPane
来扩展视图。当我运行程序时,会出现滚动条但按钮显示为水平。如何将其更改为垂直显示?
答案 0 :(得分:0)
我会更改LayoutManager。在您的情况下,GridLayout
会更好。您的代码可能如下所示:
// create all buttons
JButton[] buttons = { new JButton("First Button"), new JButton("Second Button"), ... };
// create the JPanel, your contentPane
JPanel p = new JPanel();
// set the LayoutManager to GridLayout and use a Grid of 1 x buttons.length
p.setLayoutManager(new GridLayout(1, buttons.length));
// add all buttons
for (JButton b : buttons)
p.add(b);
// set the contentPane
frame.setContentPane(p);
答案 1 :(得分:-1)
这正是我想要的,但我宁愿使用下面的内容来获得垂直对齐:
// set the LayoutManager to GridLayout and use a Grid of 1 x buttons.length p.setLayoutManager(new GridLayout(1, buttons.length));
谢谢大家。