重量级之上的轻量级
我有一个带有 JLayeredPane 的 JFrame。 JLayeredPane 包含一个重量级组件(Ardor3d AWT 画布)。我试图在重量级组件之上显示 JPanel。在我将框架的大小设置为显示器的大小之前,这种方法效果很好。重量级似乎超过了我想要的 Jpanel。
有什么想法吗?
I have a JFrame that has a JLayeredPane. The JLayeredPane contains a heavyweight component (Ardor3d AWT canvas). I am trying to display a JPanel on top of the heavyweight component. This works perfectly until I set the size of the frame to the size of my monitor. The heavyweight seems to draw over the Jpanel that I want on top.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能对您有帮助: http://java.sun.com/developer/technicalArticles/GUI /混合组件/
This might help you: http://java.sun.com/developer/technicalArticles/GUI/mixing_components/
是的,这就是为什么你不应该混合重量级和轻量级组件。扩展 JComponent 并重写 PaintComponent(),而不是使用画布。
你提到Ardor3d,我认为这是某种第三方组件。如果没有 Swing 版本,我建议寻找其他东西来满足您的需求。
Yes, this is why you should not mix heavyweight and lightweight components. Extend JComponent and override paintComponent() instead of using a canvas.
You mention Ardor3d, I assume that is some sort of 3rd party component. If there is not a Swing version I would suggest finding something else to meet your need.