PaintComponent() 和 PaintComponents() 有什么不同?

发布于 2024-11-02 00:23:58 字数 128 浏览 1 评论 0原文

我想知道 PaintComponent() 和 PaintComponents() 之间有什么不同?

当我使用 PaintComponent 时,它显示了我们想要的所有内容,但 PaintComponents 没有做任何事情!

I want to know what is different between paintcomponent() and paintcomponents()?

when i use from paintcomponent it shows every thing that we want,but paintcomponents didn't do any thing!

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

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

发布评论

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

评论(1

Saygoodbye 2024-11-09 00:23:58

java.awt.Container.paintComponents 看起来它(间接)调用paint (经过一些其他处理后)在它的子组件上,你覆盖它的唯一原因是如果你想用它做一些时髦的事情。一般来说,除非您真的知道自己在做什么,否则您可能不应该覆盖它,而应该只覆盖适当控件上的 paintComponent

From a quick browser of the source of java.awt.Container.paintComponents it seems like it (indirectly) calls paint (after some other processing) on it's child components, and the only reason you'd override it is if you want to do something funky with it. Generally unless you really know what you're doing you probably shouldn't override it and instead should just override paintComponent on the appropriate control.

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