jframe的java缩放
是否可以创建 JFrame
和 setResizeable(true)
,但让 x 和 y 值缩放相同的量,即您不能只增加 x 或 y,但两者同时存在,所以它保持比例?
Is it possible to create a JFrame
and setResizeable(true)
, but have the x and y values scale by the same amount, i.e. you cannot increase just the x or y but both at the same time so it stays in proportion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然并不完美,但您可以向 JFrame 添加 ComponentListener ,专门覆盖
ComponentListener.componentResized
--(因为这就是您所需要的,您可以扩展 ComponentAdapter)。基本要点是:
希望这有帮助
Although not perfect, you could add a ComponentListener to the JFrame, overriding specifically
ComponentListener.componentResized
-- (since that's all you need, you could just extend a ComponentAdapter).The basic gist would be:
Hope this helps