GridLayout 的一个单元格中有多个 Java GUI 组件?
是否可以在 Java GridLayout 的一个单元格内添加三个 JTextField?如果没有,我怎样才能拥有一个基于网格的布局,在其中可以设置每个单元格的首选高度并向单元格添加多个 Java GUI 组件?
谢谢!
Is it possible to add three JTextFields inside of one cell in a Java GridLayout? If not, how can I have a grid based layout where I can set the preferred height of each cell and add more than one Java GUI component to a cell?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将它们全部添加到一个面板中,并将该面板添加到 GridLayout 面板中。
例如:
另外,也许 GridBagLayout 会满足您的需求。
You should add them all to one panel and add this panel to the
GridLayout
panel.For example:
Also, maybe GridBagLayout will fit your needs.