Java swing jLayeredPane
我有一个代码,可以在鼠标单击时在 jLayeredpane 中的单击位置添加 jbutton。现在问题出在调整大小上。当我在运行时不更改 jLayeredpane 的大小时,就没有问题。当我最大化窗口并且将其设置为时,jLayeredpane 将调整以适合屏幕,因此当我现在在 jpane 上添加按钮时,当窗口大小减小时,我添加的按钮超出了范围,所以它是不显示。有什么解决办法吗?
I have an code that adds jbutton on the clicked place in the jLayeredpane on mouse click. Now the problem is on resize. When i dont change the size of jLayeredpane on runtime there is no problem. When i maximize the window and i have made it as, the jLayeredpane will adjust to fit the screen so when i add a button on the jpane now and when the window size is reduced the buttons i have added is out of range and so it is not displayed. Any solution for this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文章在分层窗格中布置组件 提到,“虽然分层窗格默认没有布局管理器,但您仍然可以为分层窗格分配布局管理器。”
The article Laying Out Components in a Layered Pane mentions, "Although a layered pane has no layout manager by default, you can still assign a layout manager to the layered pane."
是的..使用 布局 :)
Yes.. Use Layouts :)