如何增加 JScrollPane 窗格的大小?
scrollPane = new JScrollPane(table); panel1.add(scrollPane,BorderLayout.CENTER);
有没有办法让scrollPane更大(更宽)?
scrollPane = new JScrollPane(table); panel1.add( scrollPane,BorderLayout.CENTER );
Is there a way I can make the scrollPane bigger (wider) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这有效。我想通了。
This works. I figured it out.
使用边框布局时,您无法控制其中组件的大小考虑使用 GridBag 布局。
When using Border Layout you don't control the size of the somponents in it Consider using GridBag Layout.
JScrollPane
与它所容纳的元素一样大。您应该使这些元素更宽。另外,还有
setSize()
方法。但您很可能想要使用 mre 提到的setPreferredSize()
方法。The
JScrollPane
is as big as the element it holds. You should make those element(s) wider.Also, there is the
setSize()
-method. But you'll most likely want to use thesetPreferredSize()
-method as mentioned by mre.