边框布局摇摆
我正在使用BorderLayout。在北部位置,我有一个名为 panNorth
的面板,我在其中添加一些组件(例如,单击一次,我在下一行(网格布局)中添加一个按钮)。在中心部分的主框架中我稍后会添加一些内容。
所以我现在的问题是,当我在 panNorth
中添加新控件时,尺寸会增加并占据 BorderLayout
的中心位置。所以我在北侧添加了一个JScrollPane
,并在Jscrollpane中添加了panNorth
,但没有发生任何不同的情况。同样的事情再次发生; JScrollPane
的大小正在扩展到 panNorth
的原始大小,因此它显示所有组件,滚动条现在未使用完整。
所以请向我建议如何一次只显示 3 行。
I m using A BorderLayout
. In the north position I m having a panel called panNorth
, where I'm adding some component (say for one click I'm adding one button in the next row (gridlayout)). In the main frame in the center part I will add something later.
So what is my problem now is, when ever I'm adding new controls in panNorth
the size getting increased and occupy the BorderLayout's
center place. So I added a JScrollPane
in the north side and added the panNorth
in Jscrollpane, but nothing different happened. The same thing is happening again; the size of the JScrollPane
is expanding to the original size of the panNorth
so it displays all the components, the scrollbar is not use full now.
So please suggest to me how to make visible only 3 rows at a time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用:
这应该强制
JScrollPane
在北窗格中保持其首选大小。Try using:
This should force the
JScrollPane
to keep its preferred size in the North pane.