将用户界面图像绘制到玻璃板上

发布于 2024-11-14 06:19:16 字数 232 浏览 2 评论 0原文

我正在尝试在 Glasspane 上绘制 GUI 的修改版本。我的想法是有一个面板,我可以在其中重写绘制函数,但是当我尝试类似的操作时

glass = frame.getGlasspane();
glass.draw(g);

,即使我使用frame.setGlasspane(new JPanel());初始化了玻璃板,我也会得到空指针异常。

感谢您的帮助

I'm trying to draw a modified version of my GUI onto the Glasspane. My idea is to have a panel where I override the paint function, but when I trysomething like

glass = frame.getGlasspane();
glass.draw(g);

I get a Nullpointer Exception, even though I initialized the glasspane with frame.setGlasspane(new JPanel());

Thanks for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

盗梦空间 2024-11-21 06:19:16

请阅读如何使用根窗格以下示例,示例有关 < a href="http://www.java2s.com/Tutorial/Java/0240__Swing/Paintonglasspane.htm" rel="nofollow">paint(图形 g) 或 此处

please read How to Use Root Panes follows example, example about paint(Graphics g) or here

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