如何使 JList 自动随 netbeans Swing 应用程序中的窗口拉伸?
我有一个简单的 java swing 应用程序,内置于 netbeans 中。应用程序中有一个 JList(在 JScrollPane 内——netbeans 自动创建它)。我希望 JList 在用户调整主窗口大小时增大和缩小。
在 netbeans 中我需要做什么才能将 JList 的水平和垂直大小绑定到主窗口?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1)使用正确的 LayoutManager,如果我理解正确BorderLayout.CENTER 可以做到这一点
2)把 JList 到 JScrollPane
3)用手编写代码并使用 SSCCE 证明了您的问题
1) use proper LayoutManager, if I understood correctly BorderLayout.CENTER can do that
2) put JList to the JScrollPane
3) write code by your hands and edit your question with SSCCE that demonstrated your issue(s)
在GUI编辑器中添加一个JPanel,将布局设置为Free Design。然后,您可以将 JList 附加到所有壁板组件(带边距),以便调整 JList 的大小。
In the GUI editor add a JPanel, set the layout to Free Design. Then you can attach the JList to all siding components (with margin) so the JList is resized.