调整子组件 Swing 的大小
我想知道我是否有一个组件,例如,如果用户调整父组件的大小,按钮如何能够调整其大小?
I want to know if I had a component,for example,button how to able it to resize if parent component is resized by user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是由容器的布局管理器处理的。例如,BorderLayout 中心的按钮将在各个方向上调整大小。
阅读有关布局管理器的 Swing 教程。
This is handled by the layout manager of the container. A button at the center of a BorderLayout will resize in all directions, for example.
Read the Swing tutorial on layout managers.