Java JFrame 调整大小
我知道我可以使用 componentResized
来监听用户何时调整窗口大小。这不是一个很好的解决方案。如果我这样做并为子组件添加一个 resize() 方法,那么它会等到用户完成调整大小后再调用 resize() 方法。有没有办法在调整大小时调整子元素的大小?
I know I can use componentResized
to listen for when the user resizes a window. This isn't a very nice solution. If I do this and add a resize()
method for the children components, then it waits until the user finishes the resizing before it calls the resize()
method. Is there a way to resize the child elements as the resize happens?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
componentResized()
的监听器是一个很好的解决方案。在 swing 中使用监听器根本不是一个坏的解决方案。您可以在 oracle.com 上查看所需的解决方案
The listener with
componentResized()
is the nice solution. Using listener in swing isn't a bad solution at all.You can see the solution you want on oracle.com