【发布时间】:2020-04-15 07:46:05
【问题描述】:
对于我的代码,我做了类似的事情:
Jframe frame = new JFrame();
JPanel panel = new JPanel();
JButton button = new JButton();
// after locating and resizing buttons...
panel.add(button);
// and after many codes about buttons and labels...
frame.add(panel);
JScrollPane scroll = new JScrollPane(panel);
scroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
frame.add(scroll);
据我所知,这应该是正确的,但我无法滚动。 滚动条内的灰色条不见了。
感谢您的关注和时间!
【问题讨论】:
标签: java swing jframe jpanel jscrollpane