重量级之上的轻量级

发布于 2024-10-03 15:49:57 字数 162 浏览 3 评论 0原文

我有一个带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烧了回忆取暖 2024-10-10 15:49:57

是的,这就是为什么你不应该混合重量级和轻量级组件。扩展 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文