英文:
How can we align text fields from top to bottom in JFrame in java?
问题
如何在Java的JFrame中将文本字段从顶部对齐到底部?我想要将一个文本字段和它的标签在同一行对齐。第二个文本字段和它的标签可以放在第一个文本字段和标签的下面。请给我一个示例。我是一个非常初学者。
英文:
How can we align Text Fields in java from top to bottom in JFrame? I want to align only one Text Field and it's Label in one line.The second TextField and it's Label may be placed under the first and so on.
Help me with example. I am a very beginner.
答案1
得分: 2
你可以使用布局将你的GUI元素放置在容器中。在你的情况下,GridLayout或者GridBagLayout可能是最合适的选择。
英文:
You can use layouts to place your GUI elements in a container. In your case a GridLayout or GridBagLayout would probably work best.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论