Java GUI 布局管理器
似乎我可以使用单个网格布局完成所有事情 - 即使是如果我不使用网格布局可能需要多个嵌套布局的任务。单个网格布局是否比许多不同的嵌套布局更好?
It seems that I can do everything with a single Grid Layout--even tasks that might require multiple nested layouts if I did not use Grid Layout. Is a single Grid Layout a better approach than many different nested layouts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数屏幕与 BorderLayout 配合得非常自然,并且它为其中的组件提供了良好的调整大小行为。
就我个人而言,我真的宁愿将各种组件嵌套在 BorderLayout 中——可能在内部使用 Grid,也可能使用其他组件。
多次尝试调整大小行为并看看您的想法。
调整大小是关键。
Most screens work very naturally with BorderLayout and it gives good resizing behavior to components inside it.
Personally I'd really rather nest various components inside a BorderLayout--possibly using Grid inside and possibly using others.
Experiment a lot with resizing behavior and see what you think.
Resizing is the key.