GridLayout 的一个单元格中有多个 Java GUI 组件?

发布于 2024-10-29 18:46:01 字数 125 浏览 0 评论 0原文

是否可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∞琼窗梦回ˉ 2024-11-05 18:46:01

您应该将它们全部添加到一个面板中,并将该面板添加到 GridLayout 面板中。

例如:

JPanel inPanel = new JPanel();           // Create new panel
inPanel.add(new JTextField("TF1");       // Add components to it
inPanel.add(new JTextField("TF2");
inPanel.add(new JTextField("TF3");
myGridPanel.add(inPanel);                // Add the panel to a your "GridLayout" panel

另外,也许 GridBagLayout 会满足您的需求。

You should add them all to one panel and add this panel to the GridLayout panel.

For example:

JPanel inPanel = new JPanel();           // Create new panel
inPanel.add(new JTextField("TF1");       // Add components to it
inPanel.add(new JTextField("TF2");
inPanel.add(new JTextField("TF3");
myGridPanel.add(inPanel);                // Add the panel to a your "GridLayout" panel

Also, maybe GridBagLayout will fit your needs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文