Swing:孩子可以超越父母的界限吗?

发布于 2024-11-09 05:25:36 字数 104 浏览 0 评论 0原文

在 Swing 中,子级 JComponent 是否可以在其父级 JComponent 的边界之外呈现,或者子级是否始终被剪切到其父级的边界?

In Swing, can a child JComponent be rendered outside of the bounds of its parent JComponent, or are children always clipped to the bounds of their parent?

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

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

发布评论

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

评论(2

空宴 2024-11-16 05:25:36

只要子组件是轻量级组件,它就会被限制在父组件的边界内。但是,如果太大,则会被剪切,不会进行缩放。

如果子组件是重量级组件而父组件是轻量级组件,则子组件将在父组件边界之外渲染。

这里有一篇关于此的非常好的文章:http://java.sun。 com/developer/technicalArticles/GUI/mixing_components/index.html(不记得是谁推荐给我的,但谢谢!)

还有一个更新,我不知道(在链接中):

从 JDK 6 Update 12 和 JDK 7 开始
build 19 版本,现在可以了
无缝混合重量级和
同一部件内的轻量级部件
容器。

As long as the child is a light-weight component, it will be limited to the boundaries of the parent component. However, if it is too big, It will be cut, no scaling will be done.

If the child is a heavy weight component and the father is light-weight component, the child will be rendered outside of the parent bounds.

There's a really nice article about this here: http://java.sun.com/developer/technicalArticles/GUI/mixing_components/index.html (can't remember who referred me to it but thanks!)

One more update, which I wasn't aware of (in the link):

As of the JDK 6 Update 12 and JDK 7
build 19 releases, it is now possible
to seamlessly mix heavyweight and
lightweight components within the same
container.

小姐丶请自重 2024-11-16 05:25:36

实际上,您可以重置paint()方法中使用的Graphics实例的剪辑边界。只需保存旧剪辑,设置新剪辑,在父边界之外进行绘画,然后将原始剪辑设置回去。

Actually You can reset clip bounds of the Graphics instance used in paint() method. JUst save old clip, set new, do your painting outside the parent bounds and set original clip back.

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