将用户界面图像绘制到玻璃板上
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请阅读如何使用根窗格以下示例,示例有关 < 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